summaryrefslogtreecommitdiff
path: root/Python/dynload_win.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-04 03:15:05 +0000
committerChristian Heimes <christian@cheimes.de>2008-01-04 03:15:05 +0000
commit123d5c9396a6c12d418bbdf6d7ec861537f4c199 (patch)
tree13a9fef17c6dce1a7be299fbb1a1ed9bbda7e63c /Python/dynload_win.c
parent76d19f68e4c824bbcba890d924f20a6133ee0326 (diff)
downloadcpython-git-123d5c9396a6c12d418bbdf6d7ec861537f4c199.tar.gz
Moved include "Python.h" in front of other imports to silence a warning.
Diffstat (limited to 'Python/dynload_win.c')
-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 98ebccb2de..751790da2b 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>