summaryrefslogtreecommitdiff
path: root/Include/tupleobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-27 10:17:52 +0000
committerGuido van Rossum <guido@python.org>1995-02-27 10:17:52 +0000
commita4849aa2c4d5d30cdbe272f339b4cb35feae7829 (patch)
tree4219a6a4864e79bb16585c6d51c471e2a769309c /Include/tupleobject.h
parentffd09759d759abf9622c30f5e3c0b186e227dc01 (diff)
downloadcpython-a4849aa2c4d5d30cdbe272f339b4cb35feae7829.tar.gz
make the type a parameter of the DL_IMPORT macro, for Borland C
Diffstat (limited to 'Include/tupleobject.h')
-rw-r--r--Include/tupleobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/tupleobject.h b/Include/tupleobject.h
index ff606721e8..da7689169d 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)