summaryrefslogtreecommitdiffstats
path: root/Modules/gdbmmodule.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-24 14:43:35 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-24 14:43:35 (GMT)
commit58d0510245c65cff2ded9d3923bf1ef2b85f4214 (patch)
treeb10bce44a0eb8a479190f18243f511a0c64f2be6 /Modules/gdbmmodule.c
parent8ec68fded2a99b2c2e2e637e42839741fedbf0a1 (diff)
downloadcpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.zip
cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.tar.gz
cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.tar.bz2
ANSIfy some more forward declarations.
Diffstat (limited to 'Modules/gdbmmodule.c')
-rw-r--r--Modules/gdbmmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/gdbmmodule.c b/Modules/gdbmmodule.c
index 2c5bdbe..6d2e6ce 100644
--- a/Modules/gdbmmodule.c
+++ b/Modules/gdbmmodule.c
@@ -474,7 +474,7 @@ static PyMethodDef dbmmodule_methods[] = {
};
DL_EXPORT(void)
-initgdbm() {
+initgdbm(void) {
PyObject *m, *d;
Dbmtype.ob_type = &PyType_Type;