make the type a parameter of the  DL_IMPORT macro, for Borland C
diff --git a/Include/fileobject.h b/Include/fileobject.h
index 85c98c6..9346624 100644
--- a/Include/fileobject.h
+++ b/Include/fileobject.h
@@ -30,7 +30,7 @@
 
 /* File object interface */
 
-extern DL_IMPORT PyTypeObject PyFile_Type;
+extern DL_IMPORT(PyTypeObject) PyFile_Type;
 
 #define PyFile_Check(op) ((op)->ob_type == &PyFile_Type)