diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-11-23 09:16:19 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-11-23 09:16:19 (GMT) |
commit | e17af7b3dbb0ebc6fea7e55052833564ca59d104 (patch) | |
tree | c7f041d3dc20fb6baef9a98b5db6c730ad53fa01 /Modules/bz2module.c | |
parent | 39f59b089dde8c4badaa510dd47d6d93d5eaed3d (diff) | |
download | cpython-e17af7b3dbb0ebc6fea7e55052833564ca59d104.zip cpython-e17af7b3dbb0ebc6fea7e55052833564ca59d104.tar.gz cpython-e17af7b3dbb0ebc6fea7e55052833564ca59d104.tar.bz2 |
Include Python.h first.
Diffstat (limited to 'Modules/bz2module.c')
-rw-r--r-- | Modules/bz2module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/bz2module.c b/Modules/bz2module.c index ffd1743..f358de7 100644 --- a/Modules/bz2module.c +++ b/Modules/bz2module.c @@ -7,9 +7,9 @@ Copyright (c) 2002 Python Software Foundation; All Rights Reserved */ +#include "Python.h" #include <stdio.h> #include <bzlib.h> -#include "Python.h" #include "structmember.h" #ifdef WITH_THREAD |