Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4099e6 commit 3d109a0Copy full SHA for 3d109a0
1 file changed
Include/ceval.h
@@ -44,6 +44,16 @@ PyObject *PyEval_CallObjectWithKeywords
44
#define PyEval_CallObject(func,arg) \
45
PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
46
47
+#ifdef HAVE_STDARG_PROTOTYPES
48
+PyObject *PyEval_CallFunction Py_PROTO((PyObject *obj, char *format, ...));
49
+PyObject *PyEval_CallMethod Py_PROTO((PyObject *obj,
50
+ char *methodname, char *format, ...));
51
+#else
52
+/* Better to have no prototypes at all for varargs functions in this case */
53
+PyObject *PyEval_CallFunction();
54
+PyObject *PyEval_CallMethod();
55
+#endif
56
+
57
PyObject *PyEval_GetBuiltins Py_PROTO((void));
58
PyObject *PyEval_GetGlobals Py_PROTO((void));
59
PyObject *PyEval_GetLocals Py_PROTO((void));
0 commit comments