summaryrefslogtreecommitdiff
path: root/Include/iterobject.h
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
committerMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
commit81ef4c697a0af6c88625d468535f5209069756cf (patch)
tree6913a658d62df8cff4cc8bbdd169a86b7fdece49 /Include/iterobject.h
parentad33186082cc314513662b8423ed68de7019a302 (diff)
downloadcpython-81ef4c697a0af6c88625d468535f5209069756cf.tar.gz
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/iterobject.h')
-rw-r--r--Include/iterobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Include/iterobject.h b/Include/iterobject.h
index 8abe678e4c..c078ebb28b 100644
--- a/Include/iterobject.h
+++ b/Include/iterobject.h
@@ -5,17 +5,17 @@
extern "C" {
#endif
-extern DL_IMPORT(PyTypeObject) PySeqIter_Type;
+PyAPI_DATA(PyTypeObject) PySeqIter_Type;
#define PySeqIter_Check(op) ((op)->ob_type == &PySeqIter_Type)
-extern DL_IMPORT(PyObject *) PySeqIter_New(PyObject *);
+PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);
-extern DL_IMPORT(PyTypeObject) PyCallIter_Type;
+PyAPI_DATA(PyTypeObject) PyCallIter_Type;
#define PyCallIter_Check(op) ((op)->ob_type == &PyCallIter_Type)
-extern DL_IMPORT(PyObject *) PyCallIter_New(PyObject *, PyObject *);
+PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
#ifdef __cplusplus
}
#endif