commit | 8f3032da10a14c95c13457aa44bae7d02e2271a3 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Aug 19 22:03:12 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Aug 19 22:03:12 1996 +0000 |
tree | c13cbf0b060803ceb2ebaf4fc7a893a1703f8d09 | |
parent | 860986812a4ff02d932572fffaa24970819f128f [diff] |
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;