diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 2000-08-18 10:00:28 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 2000-08-18 10:00:28 (GMT) |
commit | f28b898f13cd07809667c389a36c9507b18da9ed (patch) | |
tree | 1767d7c90a9c962a320b4fed6b1e650d0aa13c1c /Modules/cstubs | |
parent | 2dd4abf27769d6c1c04310d83374f30e229826ea (diff) | |
download | cpython-f28b898f13cd07809667c389a36c9507b18da9ed.zip cpython-f28b898f13cd07809667c389a36c9507b18da9ed.tar.gz cpython-f28b898f13cd07809667c389a36c9507b18da9ed.tar.bz2 |
Removed references to Py_FPROTO.
Diffstat (limited to 'Modules/cstubs')
-rw-r--r-- | Modules/cstubs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cstubs b/Modules/cstubs index 257f8c6..3ce58da 100644 --- a/Modules/cstubs +++ b/Modules/cstubs @@ -109,7 +109,7 @@ gl_varray(self, args) PyObject *v, *w=NULL; int i, n, width; double vec[3]; - PyObject * (*getitem) Py_FPROTO((PyObject *, int)); + PyObject * (*getitem)(PyObject *, int); if (!PyArg_GetObject(args, 1, 0, &v)) return NULL; @@ -212,7 +212,7 @@ gen_nvarray(args, inorm) PyObject *v, *w, *wnorm, *wvec; int i, n; float norm[3], vec[3]; - PyObject * (*getitem) Py_FPROTO((PyObject *, int)); + PyObject * (*getitem)(PyObject *, int); if (!PyArg_GetObject(args, 1, 0, &v)) return NULL; |