1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Use lower-case windows.h

On some linux cross-builds, Windows.h is windows.h. On MinGW
case is irrelevant.

* libguile/posix-w32.h: modified
This commit is contained in:
Michael Gran 2021-03-10 01:53:03 -08:00
parent 0bd7497b61
commit fedb65b98e

View file

@ -24,7 +24,7 @@
#ifndef WIN32_LEAN_AND_MEAN #ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#endif #endif
#include <Windows.h> #include <windows.h>
#endif #endif
#include <string.h> #include <string.h>
#include "libguile/scm.h" #include "libguile/scm.h"