avoid C++ name mangling for the _Py.*SizeT functions

This commit is contained in:
Anthony Baxter 2006-04-12 04:38:54 +00:00
parent d6495b5944
commit 97300387ec

View file

@ -6,6 +6,9 @@
#include <ctype.h>
#ifdef __cplusplus
extern "C" {
#endif
int PyArg_Parse(PyObject *, const char *, ...);
int PyArg_ParseTuple(PyObject *, const char *, ...);
int PyArg_VaParse(PyObject *, const char *, va_list);
@ -1742,3 +1745,6 @@ _PyArg_NoKeywords(const char *funcname, PyObject *kw)
funcname);
return 0;
}
#ifdef __cplusplus
};
#endif