summaryrefslogtreecommitdiff
path: root/Include/longintrepr.h
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
committerMark Hammond <mhammond@skippinet.com.au>2002-08-12 07:21:58 +0000
commit91a681debf9ffec155d0aff8a0bb5f965f592e16 (patch)
tree09f28782e3b0a24e64deddeafc9df24ac93855ca /Include/longintrepr.h
parent44121a6bc9828c993932b87e442440dc4f260f3c (diff)
downloadcpython-git-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.gz
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/longintrepr.h')
-rw-r--r--Include/longintrepr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h
index abf8640684..5755adb306 100644
--- a/Include/longintrepr.h
+++ b/Include/longintrepr.h
@@ -47,10 +47,10 @@ struct _longobject {
digit ob_digit[1];
};
-DL_IMPORT(PyLongObject *) _PyLong_New(int);
+PyAPI_FUNC(PyLongObject *) _PyLong_New(int);
/* Return a copy of src. */
-DL_IMPORT(PyObject *) _PyLong_Copy(PyLongObject *src);
+PyAPI_FUNC(PyObject *) _PyLong_Copy(PyLongObject *src);
#ifdef __cplusplus
}