]> granicus.if.org Git - python/commitdiff
No need to include windows.h twice
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sat, 10 Nov 2007 13:55:44 +0000 (13:55 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sat, 10 Nov 2007 13:55:44 +0000 (13:55 +0000)
Python/sysmodule.c

index ffaa596642b42551d4b074d043c997e5417d8a3e..6fcbe75eef53c505d0ff3c74996a1f05e2cf83a0 100644 (file)
@@ -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>