Fix a bunch of imports to use code.h instead of compile.h.
Remove duplicate declarations from compile.h
diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c
index 0842728..ddfd336 100644
--- a/Modules/_hotshot.c
+++ b/Modules/_hotshot.c
@@ -4,7 +4,6 @@
 
 #include "Python.h"
 #include "code.h"
-#include "compile.h"
 #include "eval.h"
 #include "frameobject.h"
 #include "structmember.h"
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
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 438f760..c853160 100644
--- a/Modules/pyexpat.c
+++ b/Modules/pyexpat.c
@@ -1,7 +1,6 @@
 #include "Python.h"
 #include <ctype.h>
 
-#include "compile.h"
 #include "frameobject.h"
 #include "expat.h"
 
diff --git a/Modules/zipimport.c b/Modules/zipimport.c
index e445300..934367e 100644
--- a/Modules/zipimport.c
+++ b/Modules/zipimport.c
@@ -2,7 +2,6 @@
 #include "structmember.h"
 #include "osdefs.h"
 #include "marshal.h"
-#include "compile.h"
 #include <time.h>