Inline PyObject_CallObject (Marc-Andre Lemburg).
diff --git a/Include/ceval.h b/Include/ceval.h
index 2805379..62977ba 100644
--- a/Include/ceval.h
+++ b/Include/ceval.h
@@ -37,10 +37,13 @@
 
 /* Interface to random parts in ceval.c */
 
-PyObject *PyEval_CallObject Py_PROTO((PyObject *, PyObject *));
 PyObject *PyEval_CallObjectWithKeywords
 	Py_PROTO((PyObject *, PyObject *, PyObject *));
 
+/* Inline this */
+#define PyEval_CallObject(func,arg) \
+        PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
+
 PyObject *PyEval_GetBuiltins Py_PROTO((void));
 PyObject *PyEval_GetGlobals Py_PROTO((void));
 PyObject *PyEval_GetLocals Py_PROTO((void));