diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-10 12:04:18 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-10 12:04:18 (GMT) |
commit | e89b15691e224f7742b72b9e502580a0189659fe (patch) | |
tree | 3e84c7cdc6c20d13ecc3382333b2b3983d735e43 /Modules/timingmodule.c | |
parent | c4bc0e0895ef4407f7d4239a107a0324ae545bbb (diff) | |
download | cpython-e89b15691e224f7742b72b9e502580a0189659fe.zip cpython-e89b15691e224f7742b72b9e502580a0189659fe.tar.gz cpython-e89b15691e224f7742b72b9e502580a0189659fe.tar.bz2 |
ANSI-fication
Diffstat (limited to 'Modules/timingmodule.c')
-rw-r--r-- | Modules/timingmodule.c | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/Modules/timingmodule.c b/Modules/timingmodule.c index bbccb43..f7323bb 100644 --- a/Modules/timingmodule.c +++ b/Modules/timingmodule.c @@ -8,9 +8,7 @@ #include "timing.h" static PyObject * -start_timing(self, args) - PyObject *self; - PyObject *args; +start_timing(PyObject *self, PyObject *args) { if (!PyArg_Parse(args, "")) return NULL; @@ -21,9 +19,7 @@ start_timing(self, args) } static PyObject * -finish_timing(self, args) - PyObject *self; - PyObject *args; +finish_timing(PyObject *self, PyObject *args) { if (!PyArg_Parse(args, "")) return NULL; @@ -34,9 +30,7 @@ finish_timing(self, args) } static PyObject * -seconds(self, args) - PyObject *self; - PyObject *args; +seconds(PyObject *self, PyObject *args) { if (!PyArg_Parse(args, "")) return NULL; @@ -46,9 +40,7 @@ seconds(self, args) } static PyObject * -milli(self, args) - PyObject *self; - PyObject *args; +milli(PyObject *self, PyObject *args) { if (!PyArg_Parse(args, "")) return NULL; @@ -57,9 +49,7 @@ milli(self, args) } static PyObject * -micro(self, args) - PyObject *self; - PyObject *args; +micro(PyObject *self, PyObject *args) { if (!PyArg_Parse(args, "")) return NULL; |