]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Declare initregex() as returning void, as it should be.
authorGuido van Rossum <guido@python.org>
Mon, 19 Aug 1996 22:03:12 +0000 (22:03 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 19 Aug 1996 22:03:12 +0000 (22:03 +0000)
Modules/regexmodule.c

index 9cbd4bf4acaedc49cf8948ec629d0a41edc9dd13..1c553ea81c7c5d6382f4b15c1f259e93eba732c1 100644 (file)
@@ -565,6 +565,7 @@ static struct PyMethodDef regex_global_methods[] = {
        {NULL,          NULL}           /* sentinel */
 };
 
+void
 initregex()
 {
        PyObject *m, *d, *v;