make the type a parameter of the  DL_IMPORT macro, for Borland C
diff --git a/Include/compile.h b/Include/compile.h
index 4513d28..f311a4b 100644
--- a/Include/compile.h
+++ b/Include/compile.h
@@ -47,7 +47,7 @@
 	PyObject *co_name;	/* string */
 } PyCodeObject;
 
-extern DL_IMPORT PyTypeObject PyCode_Type;
+extern DL_IMPORT(PyTypeObject) PyCode_Type;
 
 #define PyCode_Check(op) ((op)->ob_type == &PyCode_Type)