summaryrefslogtreecommitdiffstats
path: root/Include/modsupport.h
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2006-04-18 00:29:29 (GMT)
committerSkip Montanaro <skip@pobox.com>2006-04-18 00:29:29 (GMT)
commit3fca46362798d3a5bcf1494f405b79fb4bdfb62a (patch)
tree677a078261f6724439ff651036fd4a631c81ce2e /Include/modsupport.h
parent54e964d25387f4a78faa207c22a9d6bdb3ac2c47 (diff)
downloadcpython-3fca46362798d3a5bcf1494f405b79fb4bdfb62a.zip
cpython-3fca46362798d3a5bcf1494f405b79fb4bdfb62a.tar.gz
cpython-3fca46362798d3a5bcf1494f405b79fb4bdfb62a.tar.bz2
C++ compile cleanup: proper declaration of _Py_BuildValue_SizeT
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r--Include/modsupport.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h
index 1141d6a..23d5d3a 100644
--- a/Include/modsupport.h
+++ b/Include/modsupport.h
@@ -29,6 +29,7 @@ PyAPI_FUNC(int) PyArg_ParseTupleAndKeywords(PyObject *, PyObject *,
const char *, char **, ...);
PyAPI_FUNC(int) PyArg_UnpackTuple(PyObject *, const char *, Py_ssize_t, Py_ssize_t, ...);
PyAPI_FUNC(PyObject *) Py_BuildValue(const char *, ...);
+PyAPI_FUNC(PyObject *) _Py_BuildValue_SizeT(const char *, ...);
PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw);
PyAPI_FUNC(int) PyArg_VaParse(PyObject *, const char *, va_list);