summaryrefslogtreecommitdiffstats
path: root/Modules/regexmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-19 22:03:12 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-19 22:03:12 (GMT)
commit8f3032da10a14c95c13457aa44bae7d02e2271a3 (patch)
treec13cbf0b060803ceb2ebaf4fc7a893a1703f8d09 /Modules/regexmodule.c
parent860986812a4ff02d932572fffaa24970819f128f (diff)
downloadcpython-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.c1
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;