diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-04-23 22:06:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-04-23 22:06:05 (GMT) |
commit | 5dbc7231a0cb14bc01e25fa93cf4f972744302f0 (patch) | |
tree | ddef007142bcdfbc83291606a499f0b30972a3d8 /Include/object.h | |
parent | d39f5f64538edd6c690fe635926063fb7cac853b (diff) | |
download | cpython-5dbc7231a0cb14bc01e25fa93cf4f972744302f0.zip cpython-5dbc7231a0cb14bc01e25fa93cf4f972744302f0.tar.gz cpython-5dbc7231a0cb14bc01e25fa93cf4f972744302f0.tar.bz2 |
DL_IMPORT macro was called in a funny way (and MW barfed on it)
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 d1e60be..e57cf59 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) @@ -354,7 +354,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) |