ANSI-fication
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c
index 3430077..7a6dbc8 100644
--- a/Modules/selectmodule.c
+++ b/Modules/selectmodule.c
@@ -58,8 +58,7 @@
 } pylist;
 
 static void
-reap_obj(fd2obj)
-	pylist fd2obj[FD_SETSIZE + 3];
+reap_obj(pylist fd2obj[FD_SETSIZE + 3])
 {
 	int i;
 	for (i = 0; i < FD_SETSIZE + 3 && fd2obj[i].sentinel >= 0; i++) {
@@ -74,10 +73,7 @@
    returns a number >= 0
 */
 static int
-list2set(list, set, fd2obj)
-	PyObject *list;
-	fd_set *set;
-	pylist fd2obj[FD_SETSIZE + 3];
+list2set(PyObject *list, fd_set *set, pylist fd2obj[FD_SETSIZE + 3])
 {
 	int i;
 	int max = -1;
@@ -155,9 +151,7 @@
 
 /* returns NULL and sets the Python exception if an error occurred */
 static PyObject *
-set2list(set, fd2obj)
-	fd_set *set;
-	pylist fd2obj[FD_SETSIZE + 3];
+set2list(fd_set *set, pylist fd2obj[FD_SETSIZE + 3])
 {
 	int i, j, count=0;
 	PyObject *list, *o;
@@ -199,9 +193,7 @@
 
     
 static PyObject *
-select_select(self, args)
-	PyObject *self;
-	PyObject *args;
+select_select(PyObject *self, PyObject *args)
 {
 #ifdef MS_WINDOWS
 	/* This would be an awful lot of stack space on Windows! */