aboutsummaryrefslogtreecommitdiff
path: root/Include/listobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-27 10:17:52 +0000
committerGuido van Rossum <guido@python.org>1995-02-27 10:17:52 +0000
commit051ab123b465685e714668099c0a6dd86de5673b (patch)
tree16ee109ab64b01f19e289a3c284c7ce9b70618fa /Include/listobject.h
parent0fbec64c56e5f2644b4e23a458a42ca273fd4888 (diff)
downloadcpython3-051ab123b465685e714668099c0a6dd86de5673b.tar.gz
make the type a parameter of the DL_IMPORT macro, for Borland C
Diffstat (limited to 'Include/listobject.h')
-rw-r--r--Include/listobject.h2
1 files changed, 1 insertions, 1 deletions
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)