From 051ab123b465685e714668099c0a6dd86de5673b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 27 Feb 1995 10:17:52 +0000 Subject: make the type a parameter of the DL_IMPORT macro, for Borland C --- Include/listobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/listobject.h') diff --git a/Include/listobject.h b/Include/listobject.h index 8e5e9731b1..76b49be334 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -49,7 +49,7 @@ typedef struct { 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) -- cgit v1.2.3