diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2007-11-10 13:55:44 +0000 |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2007-11-10 13:55:44 +0000 |
commit | bc22265e24e4bfe144a2d155d665d7fad95c5612 (patch) | |
tree | 3c9f902927c8a2e3081f88233a5230b07ac6694f /Python/sysmodule.c | |
parent | 5569ca01cbeaf54f551b356025a7cc012d120156 (diff) | |
download | cpython-bc22265e24e4bfe144a2d155d665d7fad95c5612.tar.gz |
No need to include windows.h twice
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index ffaa596642..6fcbe75eef 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -23,7 +23,7 @@ Data members: #ifdef MS_WINDOWS #define WIN32_LEAN_AND_MEAN -#include "windows.h" +#include <windows.h> #endif /* MS_WINDOWS */ #ifdef MS_COREDLL @@ -36,10 +36,6 @@ extern const char *PyWin_DLLVersionString; #include <unixlib.h> #endif -#ifdef MS_WINDOWS -#include <windows.h> -#endif - #ifdef HAVE_LANGINFO_H #include <locale.h> #include <langinfo.h> |