make the type a parameter of the  DL_IMPORT macro, for Borland C
diff --git a/Include/listobject.h b/Include/listobject.h
index 8e5e973..76b49be 100644
--- a/Include/listobject.h
+++ b/Include/listobject.h
@@ -49,7 +49,7 @@
 	PyObject **ob_item;
 } PyListObject;
 
-extern DL_IMPORT PyTypeObject PyList_Type;
+extern DL_IMPORT(PyTypeObject) PyList_Type;
 
 #define PyList_Check(op) ((op)->ob_type == &PyList_Type)