Peter Schneider-Kamp <nowonder@nowonder.de>:
Remove some of GCC's warning in -Wstrict-prototypes mode.

This closes SourceForge patch #101342.
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 6648c9c..530b214 100644
--- a/Modules/arraymodule.c
+++ b/Modules/arraymodule.c
@@ -788,9 +788,7 @@
 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;