From: Martin v. Löwis Date: Fri, 15 Mar 2002 09:16:40 +0000 (+0000) Subject: Include Python.h first. Fixes #530159. X-Git-Tag: v2.3c1~6491 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4233b2b8c985395ccc92482deeb96b92391ff4d;p=thirdparty%2FPython%2Fcpython.git Include Python.h first. Fixes #530159. --- diff --git a/Modules/pypcre.c b/Modules/pypcre.c index c6a14ec52813..e0aa8d074d85 100644 --- a/Modules/pypcre.c +++ b/Modules/pypcre.c @@ -45,8 +45,8 @@ restrictions: #define FOR_PYTHON -#include "pcre-int.h" #include "Python.h" +#include "pcre-int.h" #include #include "graminit.h"