commit | 051ab123b465685e714668099c0a6dd86de5673b | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Feb 27 10:17:52 1995 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Feb 27 10:17:52 1995 +0000 |
tree | 16ee109ab64b01f19e289a3c284c7ce9b70618fa | |
parent | 0fbec64c56e5f2644b4e23a458a42ca273fd4888 [diff] [blame] |
make the type a parameter of the DL_IMPORT macro, for Borland C
diff --git a/Include/mappingobject.h b/Include/mappingobject.h index f8e838c..584ee5a 100644 --- a/Include/mappingobject.h +++ b/Include/mappingobject.h
@@ -31,7 +31,7 @@ /* Dictionary object type -- mapping from hashable object to object */ /* NB Should be moved back to dictobject.h */ -extern DL_IMPORT PyTypeObject PyDict_Type; +extern DL_IMPORT(PyTypeObject) PyDict_Type; #define PyDict_Check(op) ((op)->ob_type == &PyDict_Type)