commit | 123d5c9396a6c12d418bbdf6d7ec861537f4c199 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Fri Jan 04 03:15:05 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Fri Jan 04 03:15:05 2008 +0000 |
tree | 13a9fef17c6dce1a7be299fbb1a1ed9bbda7e63c | |
parent | 76d19f68e4c824bbcba890d924f20a6133ee0326 [diff] |
Moved include "Python.h" in front of other imports to silence a warning.
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>