Peter Schneider-Kamp <nowonder@nowonder.de>:

Remove some of GCC's warning in -Wstrict-prototypes mode.

This closes SourceForge patch #101342.
This commit is contained in:
Fred Drake 2000-08-31 05:18:54 +00:00
parent 562f62aa9b
commit 8ce159aef5
4 changed files with 12 additions and 18 deletions

View file

@ -508,7 +508,7 @@ static PyMethodDef poll_methods[] = {
};
static pollObject *
newPollObject()
newPollObject(void)
{
pollObject *self;
self = PyObject_New(pollObject, &poll_Type);