summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-04 03:15:05 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-04 03:15:05 (GMT)
commit123d5c9396a6c12d418bbdf6d7ec861537f4c199 (patch)
tree13a9fef17c6dce1a7be299fbb1a1ed9bbda7e63c
parent76d19f68e4c824bbcba890d924f20a6133ee0326 (diff)
downloadcpython-123d5c9396a6c12d418bbdf6d7ec861537f4c199.zip
cpython-123d5c9396a6c12d418bbdf6d7ec861537f4c199.tar.gz
cpython-123d5c9396a6c12d418bbdf6d7ec861537f4c199.tar.bz2
Moved include "Python.h" in front of other imports to silence a warning.
-rw-r--r--Python/dynload_win.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c
index 98ebccb..751790d 100644
--- a/Python/dynload_win.c
+++ b/Python/dynload_win.c
@@ -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>