summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2007-11-10 13:55:44 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2007-11-10 13:55:44 (GMT)
commit06cfe95237bd92f0b2d1ef1eebc892ae74063809 (patch)
tree1d7eccd9d5fd298353d80e63d4cd51e5def95d97 /Python
parente018b305f6a4049b8832f712482cafec6beef5b7 (diff)
downloadcpython-06cfe95237bd92f0b2d1ef1eebc892ae74063809.zip
cpython-06cfe95237bd92f0b2d1ef1eebc892ae74063809.tar.gz
cpython-06cfe95237bd92f0b2d1ef1eebc892ae74063809.tar.bz2
No need to include windows.h twice
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index ffaa596..6fcbe75 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>