diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-10 12:29:26 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-10 12:29:26 (GMT) |
commit | 41c36ffe83d22e84cc072130b3914d66d9d722f0 (patch) | |
tree | 2a0a77b79885543be54b4440c1e445d943e56a5a /Modules/sgimodule.c | |
parent | 416d413527ed7e9a1a5fe98f94487f6ee4315d2e (diff) | |
download | cpython-41c36ffe83d22e84cc072130b3914d66d9d722f0.zip cpython-41c36ffe83d22e84cc072130b3914d66d9d722f0.tar.gz cpython-41c36ffe83d22e84cc072130b3914d66d9d722f0.tar.bz2 |
ANSI-fication
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; |