Declare initregex() as returning void, as it should be.
diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c
index 9cbd4bf..1c553ea 100644
--- a/Modules/regexmodule.c
+++ b/Modules/regexmodule.c
@@ -565,6 +565,7 @@
 	{NULL,		NULL}		/* sentinel */
 };
 
+void
 initregex()
 {
 	PyObject *m, *d, *v;