summaryrefslogtreecommitdiffstats
path: root/Modules/bz2module.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-11-23 09:16:19 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-11-23 09:16:19 (GMT)
commite17af7b3dbb0ebc6fea7e55052833564ca59d104 (patch)
treec7f041d3dc20fb6baef9a98b5db6c730ad53fa01 /Modules/bz2module.c
parent39f59b089dde8c4badaa510dd47d6d93d5eaed3d (diff)
downloadcpython-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.c2
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