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/sunaudiodev.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/sunaudiodev.c')
-rw-r--r-- | Modules/sunaudiodev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c index 4f9d2bb..2774e05 100644 --- a/Modules/sunaudiodev.c +++ b/Modules/sunaudiodev.c @@ -51,7 +51,7 @@ typedef struct { staticforward PyTypeObject Sadtype; staticforward PyTypeObject Sadstatustype; -static sadstatusobject *sads_alloc(); /* Forward */ +static sadstatusobject *sads_alloc(void); /* Forward */ static PyObject *SunAudioError; @@ -364,7 +364,7 @@ sad_getattr(sadobject *xp, char *name) /* ----------------------------------------------------------------- */ static sadstatusobject * -sads_alloc() { +sads_alloc(void) { return PyObject_New(sadstatusobject, &Sadstatustype); } |