summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2005-10-21 14:58:06 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2005-10-21 14:58:06 (GMT)
commitec97a28b60b40d366379d22876baebcdd06a89ad (patch)
treeb1c4f1aa28bd5dbdfbe182aebe1c75fb164c9c04 /Modules/main.c
parent0f00ba8bd885d86e028f971292a5f20b590a0c13 (diff)
downloadcpython-ec97a28b60b40d366379d22876baebcdd06a89ad.zip
cpython-ec97a28b60b40d366379d22876baebcdd06a89ad.tar.gz
cpython-ec97a28b60b40d366379d22876baebcdd06a89ad.tar.bz2
Fix a bunch of imports to use code.h instead of compile.h.
Remove duplicate declarations from compile.h
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c
index d511e59..f6fa48b 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -2,7 +2,7 @@
#include "Python.h"
#include "osdefs.h"
-#include "compile.h" /* For CO_FUTURE_DIVISION */
+#include "code.h" /* For CO_FUTURE_DIVISION */
#include "import.h"
#ifdef __VMS