summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-08-31 05:18:54 (GMT)
committerFred Drake <fdrake@acm.org>2000-08-31 05:18:54 (GMT)
commit8ce159aef570c7c85a1e3c938fbb91ed4d0a6979 (patch)
tree2bbf10127ff3e9d0c3613a60bd5c448f2edab5ce /Modules/arraymodule.c
parent562f62aa9b87121ba6086c4dee74130f003c9422 (diff)
downloadcpython-8ce159aef570c7c85a1e3c938fbb91ed4d0a6979.zip
cpython-8ce159aef570c7c85a1e3c938fbb91ed4d0a6979.tar.gz
cpython-8ce159aef570c7c85a1e3c938fbb91ed4d0a6979.tar.bz2
Peter Schneider-Kamp <nowonder@nowonder.de>:
Remove some of GCC's warning in -Wstrict-prototypes mode. This closes SourceForge patch #101342.
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c4
1 files changed, 1 insertions, 3 deletions
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 @@ 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;