From: Fredrik Lundh Date: Sun, 9 Jul 2000 15:14:52 +0000 (+0000) Subject: - ANSI-fication X-Git-Tag: v2.0b1~960 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5accf38ea47ee142a299061469bc1428022e237;p=thirdparty%2FPython%2Fcpython.git - ANSI-fication (patch #100784 by Peter Schneider-Kamp) --- diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c index 677759038311..a364bf2c5c40 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;