From dbd9ba6a6c19c3d06f5684b3384a934f740038db Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 9 Jul 2000 03:09:57 +0000 Subject: Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. --- Include/methodobject.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Include/methodobject.h') diff --git a/Include/methodobject.h b/Include/methodobject.h index ace58d31ba..bb9d964226 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -20,9 +20,9 @@ extern DL_IMPORT(PyTypeObject) PyCFunction_Type; #define PyCFunction_Check(op) ((op)->ob_type == &PyCFunction_Type) -typedef PyObject *(*PyCFunction) Py_FPROTO((PyObject *, PyObject *)); -typedef PyObject *(*PyCFunctionWithKeywords) - Py_FPROTO((PyObject *, PyObject *, PyObject *)); +typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); +typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, + PyObject *); extern DL_IMPORT(PyCFunction) PyCFunction_GetFunction(PyObject *); extern DL_IMPORT(PyObject *) PyCFunction_GetSelf(PyObject *); -- cgit v1.2.1