summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2000-07-09 20:35:15 +0000
committerFredrik Lundh <fredrik@pythonware.com>2000-07-09 20:35:15 +0000
commit76508bdcb9f57f439b39cd59585a52d9642eb045 (patch)
treea21b76b35f0ce8bc23ecadc13825a2a9ccd7320d /Modules
parent9f191f8d945cd7865dbc67eb7455f6aec9d114b5 (diff)
downloadcpython-76508bdcb9f57f439b39cd59585a52d9642eb045.tar.gz
- ANSI-fication
(patch #100805 by Peter Schneider-Kamp)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/python.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/python.c b/Modules/python.c
index d04d1dc321..7b456a9e72 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);
}