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/cStringIO.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Include/cStringIO.h') diff --git a/Include/cStringIO.h b/Include/cStringIO.h index 7389432934..cc62c90a78 100644 --- a/Include/cStringIO.h +++ b/Include/cStringIO.h @@ -76,22 +76,22 @@ static struct PycStringIO_CAPI { /* Read a string. If the last argument is -1, the remainder will be read. */ - int(*cread) Py_FPROTO((PyObject *, char **, int)); + int(*cread)(PyObject *, char **, int); /* Read a line */ - int(*creadline) Py_FPROTO((PyObject *, char **)); + int(*creadline)(PyObject *, char **); /* Write a string */ - int(*cwrite) Py_FPROTO((PyObject *, char *, int)); + int(*cwrite)(PyObject *, char *, int); /* Get the cStringIO object as a Python string */ - PyObject *(*cgetvalue) Py_FPROTO((PyObject *)); + PyObject *(*cgetvalue)(PyObject *); /* Create a new output object */ - PyObject *(*NewOutput) Py_FPROTO((int)); + PyObject *(*NewOutput)(int); /* Create an input object from a Python string */ - PyObject *(*NewInput) Py_FPROTO((PyObject *)); + PyObject *(*NewInput)(PyObject *); /* The Python types for cStringIO input and output objects. Note that you can do input on an output object. -- cgit v1.2.1