From: Fredrik Lundh Date: Sun, 9 Jul 2000 20:35:15 +0000 (+0000) Subject: - ANSI-fication X-Git-Tag: v2.0b1~950 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=faa209d6bdcbaae93e2c0ed449590deee4f91e23;p=thirdparty%2FPython%2Fcpython.git - ANSI-fication (patch #100805 by Peter Schneider-Kamp) --- diff --git a/Modules/python.c b/Modules/python.c index d04d1dc3211b..7b456a9e7287 100644 --- a/Modules/python.c +++ b/Modules/python.c @@ -5,9 +5,7 @@ extern DL_EXPORT(int) Py_Main(); int -main(argc, argv) - int argc; - char **argv; +main(int argc, char **argv) { return Py_Main(argc, argv); }