From 704f9c00cdcfd153e351675845da115bf2c4c89b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 1 Sep 2003 20:01:10 +0000 Subject: [PATCH] Changed #include order to correct a compilation error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23355 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/libpy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/src/libpy.c b/wxPython/src/libpy.c index aba0655768..6fe6c00bfb 100644 --- a/wxPython/src/libpy.c +++ b/wxPython/src/libpy.c @@ -5,11 +5,11 @@ * Contains variable linking and pointer type-checking code. ************************************************************************/ +#include "Python.h" + #include #include -#include "Python.h" - #ifdef __cplusplus extern "C" { #endif -- 2.45.2