diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-09-19 10:37:50 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-09-19 10:37:50 (GMT) |
commit | 7090ed16d7c849480bb8bca0b442eff1cd2c562a (patch) | |
tree | b48b2efdcc92d6881ba38627adad31b36251cbc7 /Modules/pyexpat.c | |
parent | c57428d3a0e4d4dfd4d945c75c940c0fc0c47ee3 (diff) | |
download | cpython-7090ed16d7c849480bb8bca0b442eff1cd2c562a.zip cpython-7090ed16d7c849480bb8bca0b442eff1cd2c562a.tar.gz cpython-7090ed16d7c849480bb8bca0b442eff1cd2c562a.tar.bz2 |
Include ctype.h after Python.h.
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r-- | Modules/pyexpat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 30c420d..93107ba 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -1,6 +1,6 @@ +#include "Python.h" #include <ctype.h> -#include "Python.h" #include "compile.h" #include "frameobject.h" #ifdef HAVE_EXPAT_H |