From 123d5c9396a6c12d418bbdf6d7ec861537f4c199 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 4 Jan 2008 03:15:05 +0000 Subject: [PATCH] Moved include "Python.h" in front of other imports to silence a warning. --- Python/dynload_win.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/dynload_win.c b/Python/dynload_win.c index 98ebccb2def..751790da2b1 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