diff options
author | Guido van Rossum <guido@python.org> | 1994-08-18 16:18:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-18 16:18:13 (GMT) |
commit | e89bc75048d0142859379b2b92e77d984fdbef6e (patch) | |
tree | 59cc70e5004568e03a371b088109b2330d03698c /Include/intobject.h | |
parent | 14aa5da824a398fad7403510f7b49e724f862e23 (diff) | |
download | cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.zip cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.gz cpython-e89bc75048d0142859379b2b92e77d984fdbef6e.tar.bz2 |
Changes for dynamic linking under NT
Diffstat (limited to 'Include/intobject.h')
-rw-r--r-- | Include/intobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/intobject.h b/Include/intobject.h index 2ede41e..28471b5 100644 --- a/Include/intobject.h +++ b/Include/intobject.h @@ -50,7 +50,7 @@ typedef struct { long ob_ival; } intobject; -extern typeobject Inttype; +extern DL_IMPORT typeobject Inttype; #define is_intobject(op) ((op)->ob_type == &Inttype) @@ -69,7 +69,7 @@ Hope these macros don't conflict with other people's. Don't forget to apply INCREF() when returning True or False!!! */ -extern intobject FalseObject, TrueObject; /* Don't use these directly */ +extern DL_IMPORT intobject FalseObject, TrueObject; /* Don't use these directly */ #define False ((object *) &FalseObject) #define True ((object *) &TrueObject) |