From 8f3032da10a14c95c13457aa44bae7d02e2271a3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 19 Aug 1996 22:03:12 +0000 Subject: [PATCH] Declare initregex() as returning void, as it should be. --- Modules/regexmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c index 9cbd4bf4aca..1c553ea81c7 100644 --- a/Modules/regexmodule.c +++ b/Modules/regexmodule.c @@ -565,6 +565,7 @@ static struct PyMethodDef regex_global_methods[] = { {NULL, NULL} /* sentinel */ }; +void initregex() { PyObject *m, *d, *v;