From: Guido van Rossum Date: Mon, 19 Aug 1996 22:03:12 +0000 (+0000) Subject: Declare initregex() as returning void, as it should be. X-Git-Tag: v1.4b3~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8f3032da10a14c95c13457aa44bae7d02e2271a3;p=thirdparty%2FPython%2Fcpython.git Declare initregex() as returning void, as it should be. --- diff --git a/Modules/regexmodule.c b/Modules/regexmodule.c index 9cbd4bf4acae..1c553ea81c7c 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;