From 5dbc7231a0cb14bc01e25fa93cf4f972744302f0 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Sun, 23 Apr 1995 22:06:05 +0000 Subject: [PATCH] DL_IMPORT macro was called in a funny way (and MW barfed on it) --- Include/object.h | 4 ++-- Include/tupleobject.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Include/object.h b/Include/object.h index d1e60be700a..e57cf590753 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) diff --git a/Include/tupleobject.h b/Include/tupleobject.h index 992c77085ba..23c58a586cb 100644 --- a/Include/tupleobject.h +++ b/Include/tupleobject.h @@ -49,7 +49,7 @@ typedef struct { PyObject *ob_item[1]; } PyTupleObject; -extern DL_IMPORT(PyTypeObject) PyTuple_Type; +extern DL_IMPORT PyTypeObject PyTuple_Type; #define PyTuple_Check(op) ((op)->ob_type == &PyTuple_Type)