Commit f28b898f authored by Sjoerd Mullender's avatar Sjoerd Mullender

Removed references to Py_FPROTO.

parent 2dd4abf2
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment