diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-03-15 09:16:40 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-03-15 09:16:40 (GMT) |
commit | d4233b2b8c985395ccc92482deeb96b92391ff4d (patch) | |
tree | 574b4f90c7609dc4a48219280b3dc57bcea123b3 | |
parent | 4c8349592d508df26b9a8023f7a78d6874eedb08 (diff) | |
download | cpython-d4233b2b8c985395ccc92482deeb96b92391ff4d.zip cpython-d4233b2b8c985395ccc92482deeb96b92391ff4d.tar.gz cpython-d4233b2b8c985395ccc92482deeb96b92391ff4d.tar.bz2 |
Include Python.h first. Fixes #530159.
-rw-r--r-- | Modules/pypcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pypcre.c b/Modules/pypcre.c index c6a14ec..e0aa8d0 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 <ctype.h> #include "graminit.h" |