diff options
Diffstat (limited to 'Include/longintrepr.h')
-rw-r--r-- | Include/longintrepr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h index abf8640..5755adb 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 } |