diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-09 03:09:57 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-09 03:09:57 (GMT) |
commit | dbd9ba6a6c19c3d06f5684b3384a934f740038db (patch) | |
tree | 3a2728dbc98c86a0af47d7692cb8bdd2ee41afca /Include/cStringIO.h | |
parent | 4be47c0f76c349ee9c04b08ed122c8bd8190d2c5 (diff) | |
download | cpython-dbd9ba6a6c19c3d06f5684b3384a934f740038db.zip cpython-dbd9ba6a6c19c3d06f5684b3384a934f740038db.tar.gz cpython-dbd9ba6a6c19c3d06f5684b3384a934f740038db.tar.bz2 |
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Diffstat (limited to 'Include/cStringIO.h')
-rw-r--r-- | Include/cStringIO.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Include/cStringIO.h b/Include/cStringIO.h index 7389432..cc62c90 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. |