From: Christian Heimes Date: Fri, 4 Jan 2008 03:15:05 +0000 (+0000) Subject: Moved include "Python.h" in front of other imports to silence a warning. X-Git-Tag: v2.6a1~760 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=123d5c9396a6c12d418bbdf6d7ec861537f4c199;p=thirdparty%2FPython%2Fcpython.git 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 98ebccb2defd..751790da2b12 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 #endif #include -#include "Python.h" #include "importdl.h" #include