summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
Diffstat (limited to 'Include')
-rw-r--r--Include/pyerrors.h2
-rw-r--r--Include/stringobject.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index a4ab62a..1715e97 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -63,7 +63,7 @@ PyAPI_DATA(PyObject *) PyExc_ZeroDivisionError;
PyAPI_DATA(PyObject *) PyExc_WindowsError;
#endif
#ifdef __VMS
-extern DL_IMPORT(PyObject *) PyExc_VMSError;
+PyAPI_DATA(PyObject *) PyExc_VMSError;
#endif
PyAPI_DATA(PyObject *) PyExc_MemoryErrorInst;
diff --git a/Include/stringobject.h b/Include/stringobject.h
index 7f67a1f..3deea8f 100644
--- a/Include/stringobject.h
+++ b/Include/stringobject.h
@@ -65,7 +65,7 @@ PyAPI_FUNC(int) _PyString_Eq(PyObject *, PyObject*);
PyAPI_FUNC(PyObject *) PyString_Format(PyObject *, PyObject *);
PyAPI_FUNC(PyObject *) _PyString_FormatLong(PyObject*, int, int,
int, char**, int*);
-extern DL_IMPORT(PyObject *) PyString_DecodeEscape(const char *, int,
+PyAPI_FUNC(PyObject *) PyString_DecodeEscape(const char *, int,
const char *, int,
const char *);