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/funcobject.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/funcobject.h')
-rw-r--r-- | Include/funcobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h index 84b0dcf..cb36518 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -39,7 +39,7 @@ typedef struct { object *func_argdefs; } funcobject; -extern typeobject Functype; +extern DL_IMPORT typeobject Functype; #define is_funcobject(op) ((op)->ob_type == &Functype) |