]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Moved include "Python.h" in front of other imports to silence a warning.
authorChristian Heimes <christian@cheimes.de>
Fri, 4 Jan 2008 03:15:05 +0000 (03:15 +0000)
committerChristian Heimes <christian@cheimes.de>
Fri, 4 Jan 2008 03:15:05 +0000 (03:15 +0000)
Python/dynload_win.c

index 98ebccb2defd649a80af26570ef0d56209bbcf38..751790da2b12962ac2a9b1d7614d036a00bd4198 100644 (file)
@@ -1,12 +1,13 @@
 
 /* Support for dynamic loading of extension modules */
 
+#include "Python.h"
+
 #ifdef HAVE_DIRECT_H
 #include <direct.h>
 #endif
 #include <ctype.h>
 
-#include "Python.h"
 #include "importdl.h"
 #include <windows.h>