diff options
author | Guido van Rossum <guido@python.org> | 1995-02-27 10:17:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-27 10:17:52 (GMT) |
commit | 051ab123b465685e714668099c0a6dd86de5673b (patch) | |
tree | 16ee109ab64b01f19e289a3c284c7ce9b70618fa /Include/object.h | |
parent | 0fbec64c56e5f2644b4e23a458a42ca273fd4888 (diff) | |
download | cpython-051ab123b465685e714668099c0a6dd86de5673b.zip cpython-051ab123b465685e714668099c0a6dd86de5673b.tar.gz cpython-051ab123b465685e714668099c0a6dd86de5673b.tar.bz2 |
make the type a parameter of the DL_IMPORT macro, for Borland C
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/object.h b/Include/object.h index 9c9b689..0b679d5 100644 --- a/Include/object.h +++ b/Include/object.h @@ -237,7 +237,7 @@ typedef struct _typeobject { #endif } PyTypeObject; -extern DL_IMPORT PyTypeObject PyType_Type; /* The type of type objects */ +extern DL_IMPORT(PyTypeObject) PyType_Type; /* The type of type objects */ #define PyType_Check(op) ((op)->ob_type == &PyType_Type) @@ -353,7 +353,7 @@ where NULL (nil) is not suitable (since NULL often means 'error'). Don't forget to apply Py_INCREF() when returning this value!!! */ -extern DL_IMPORT PyObject _Py_NoneStruct; /* Don't use this directly */ +extern DL_IMPORT(PyObject) _Py_NoneStruct; /* Don't use this directly */ #define Py_None (&_Py_NoneStruct) |