Peter Schneider-Kamp <nowonder@nowonder.de>:

Remove some of GCC's warning in -Wstrict-prototypes mode.

This closes SourceForge patch #101342.
This commit is contained in:
Fred Drake 2000-08-31 05:18:54 +00:00
parent 562f62aa9b
commit 8ce159aef5
4 changed files with 12 additions and 18 deletions

View file

@ -788,9 +788,7 @@ static char pop_doc [] =
Return the i-th element and delete it from the array. i defaults to -1.";
static PyObject *
array_extend(self, args)
arrayobject *self;
PyObject *args;
array_extend(arrayobject *self, PyObject *args)
{
int size;
PyObject *bb;