summaryrefslogtreecommitdiff
path: root/Include/funcobject.h
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
commitdab4b6dbb0630da2f70c3f18d4782fc42ee07f39 (patch)
tree890fd932190566f515ae668e3634e49c7169ea57 /Include/funcobject.h
parent41972b8b15a2f7ee1ca43a4de8422df7be23b82a (diff)
downloadcpython-dab4b6dbb0630da2f70c3f18d4782fc42ee07f39.tar.gz
Changes for dynamic linking under NT
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r--Include/funcobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index 84b0dcf34b..cb36518db5 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)