diff options
Diffstat (limited to 'Modules/sgimodule.c')
-rw-r--r-- | Modules/sgimodule.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Modules/sgimodule.c b/Modules/sgimodule.c index d0a4cc9..0f1ec9e 100644 --- a/Modules/sgimodule.c +++ b/Modules/sgimodule.c @@ -18,9 +18,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include <fcntl.h> static PyObject * -sgi_nap(self, args) - PyObject *self; - PyObject *args; +sgi_nap(PyObject *self, PyObject *args) { long ticks; if (!PyArg_Parse(args, "l", &ticks)) @@ -35,9 +33,7 @@ sgi_nap(self, args) extern char *_getpty(int *, int, mode_t, int); static PyObject * -sgi__getpty(self, args) - PyObject *self; - PyObject *args; +sgi__getpty(PyObject *self, PyObject *args) { int oflag; int mode; |