diff options
author | Guido van Rossum <guido@python.org> | 1996-08-19 22:03:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-19 22:03:12 (GMT) |
commit | 8f3032da10a14c95c13457aa44bae7d02e2271a3 (patch) | |
tree | c13cbf0b060803ceb2ebaf4fc7a893a1703f8d09 /Modules/regexmodule.c | |
parent | 860986812a4ff02d932572fffaa24970819f128f (diff) | |
download | cpython-8f3032da10a14c95c13457aa44bae7d02e2271a3.zip cpython-8f3032da10a14c95c13457aa44bae7d02e2271a3.tar.gz cpython-8f3032da10a14c95c13457aa44bae7d02e2271a3.tar.bz2 |
Declare initregex() as returning void, as it should be.
Diffstat (limited to 'Modules/regexmodule.c')
-rw-r--r-- | Modules/regexmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ static struct PyMethodDef regex_global_methods[] = { {NULL, NULL} /* sentinel */ }; +void initregex() { PyObject *m, *d, *v; |