diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-07-09 15:14:52 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-07-09 15:14:52 (GMT) |
commit | f5accf38ea47ee142a299061469bc1428022e237 (patch) | |
tree | 7994b9656d09465af64ad9b7ff9c0cc641511483 /Modules | |
parent | 3c5d43d342d5003e1eb74f1001dd7a45b084e343 (diff) | |
download | cpython-f5accf38ea47ee142a299061469bc1428022e237.zip cpython-f5accf38ea47ee142a299061469bc1428022e237.tar.gz cpython-f5accf38ea47ee142a299061469bc1428022e237.tar.bz2 |
- ANSI-fication
(patch #100784 by Peter Schneider-Kamp)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/errnomodule.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c index 6777590..a364bf2 100644 --- a/Modules/errnomodule.c +++ b/Modules/errnomodule.c @@ -33,11 +33,7 @@ static PyMethodDef errno_methods[] = { /* Helper function doing the dictionary inserting */ static void -_inscode(d, de, name, code) - PyObject *d; - PyObject *de; - char *name; - int code; +_inscode(PyObject *d, PyObject *de, char *name, int code) { PyObject *u; PyObject *v; |