summaryrefslogtreecommitdiff
path: root/Modules/regexmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-19 22:03:12 +0000
committerGuido van Rossum <guido@python.org>1996-08-19 22:03:12 +0000
commit002c876564b4d274a52ee5e2a5e18df317910f2c (patch)
tree13975f0dc5964c06c6b23a88e8f687f348704b92 /Modules/regexmodule.c
parent738ef2a07d85fd634dad55f216d45d1887383ca5 (diff)
downloadcpython-002c876564b4d274a52ee5e2a5e18df317910f2c.tar.gz
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 9cbd4bf4ac..1c553ea81c 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;