aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-18 16:18:13 +0000
committerGuido van Rossum <guido@python.org>1994-08-18 16:18:13 +0000
commite89bc75048d0142859379b2b92e77d984fdbef6e (patch)
tree59cc70e5004568e03a371b088109b2330d03698c /Include/classobject.h
parentversion.c is no longer... (diff)
downloadcpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.gz
cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.bz2
cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.zip
Changes for dynamic linking under NT
Diffstat (limited to 'Include/classobject.h')
-rw-r--r--Include/classobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h
index 6b1b85b44ee..f6193458509 100644
--- a/Include/classobject.h
+++ b/Include/classobject.h
@@ -57,7 +57,7 @@ typedef struct {
#endif
} instanceobject;
-extern typeobject Classtype, Instancetype, Instancemethodtype;
+extern DL_IMPORT typeobject Classtype, Instancetype, Instancemethodtype;
#define is_classobject(op) ((op)->ob_type == &Classtype)
#define is_instanceobject(op) ((op)->ob_type == &Instancetype)