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/cStringIO.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/cStringIO.c')
-rw-r--r-- | Modules/cStringIO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cStringIO.c b/Modules/cStringIO.c index bda60dd..5be59f4 100644 --- a/Modules/cStringIO.c +++ b/Modules/cStringIO.c @@ -639,7 +639,7 @@ static struct PycStringIO_CAPI CAPI = { #define DL_EXPORT(RTYPE) RTYPE #endif DL_EXPORT(void) -initcStringIO() { +initcStringIO(void) { PyObject *m, *d, *v; |