summaryrefslogtreecommitdiff
path: root/Modules/errnomodule.c
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2000-07-09 15:14:52 +0000
committerFredrik Lundh <fredrik@pythonware.com>2000-07-09 15:14:52 +0000
commitf5accf38ea47ee142a299061469bc1428022e237 (patch)
tree7994b9656d09465af64ad9b7ff9c0cc641511483 /Modules/errnomodule.c
parent3c5d43d342d5003e1eb74f1001dd7a45b084e343 (diff)
downloadcpython-git-f5accf38ea47ee142a299061469bc1428022e237.tar.gz
- ANSI-fication
(patch #100784 by Peter Schneider-Kamp)
Diffstat (limited to 'Modules/errnomodule.c')
-rw-r--r--Modules/errnomodule.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c
index 6777590383..a364bf2c5c 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;