diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_localemodule.c | 2 | ||||
-rw-r--r-- | Modules/posixmodule.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 80c2767..5ed3eaf 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -26,7 +26,7 @@ This software comes with no warranty. Use at your own risk. #endif #if defined(MS_WINDOWS) -#define WINDOWS_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN #include <windows.h> #endif diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 163263f..4d9c93d 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -217,7 +217,7 @@ extern int lstat(const char *, struct stat *); #include <io.h> #include <process.h> #include "osdefs.h" -#define WINDOWS_LEAN_AND_MEAN +/* We don't want WIN32_LEAN_AND_MEAN here -- we need ShellExecute(). */ #include <windows.h> #define popen _popen #define pclose _pclose |