diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-24 14:43:35 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-24 14:43:35 (GMT) |
commit | 58d0510245c65cff2ded9d3923bf1ef2b85f4214 (patch) | |
tree | b10bce44a0eb8a479190f18243f511a0c64f2be6 /Modules/bsddbmodule.c | |
parent | 8ec68fded2a99b2c2e2e637e42839741fedbf0a1 (diff) | |
download | cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.zip cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.tar.gz cpython-58d0510245c65cff2ded9d3923bf1ef2b85f4214.tar.bz2 |
ANSIfy some more forward declarations.
Diffstat (limited to 'Modules/bsddbmodule.c')
-rw-r--r-- | Modules/bsddbmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/bsddbmodule.c b/Modules/bsddbmodule.c index c211d23..a956ada 100644 --- a/Modules/bsddbmodule.c +++ b/Modules/bsddbmodule.c @@ -786,7 +786,7 @@ static PyMethodDef bsddbmodule_methods[] = { }; DL_EXPORT(void) -initbsddb() { +initbsddb(void) { PyObject *m, *d; Bsddbtype.ob_type = &PyType_Type; |