From: Guido van Rossum Date: Sat, 19 Jul 1997 19:25:33 +0000 (+0000) Subject: This is now the "real" main program -- it calls Py_Main(argc, argv) X-Git-Tag: v1.5a3~225 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c04be64b38d9f44f4b80fdabf3ef81d88717d83;p=python This is now the "real" main program -- it calls Py_Main(argc, argv) which is in the library and does all the work. --- diff --git a/Modules/python.c b/Modules/python.c new file mode 100644 index 0000000000..8a638c7b78 --- /dev/null +++ b/Modules/python.c @@ -0,0 +1,10 @@ +/* Minimal main program -- everything is loaded from the library */ + +extern int Py_Main(); + +main(argc, argv) + int argc; + char **argv; +{ + return Py_Main(argc, argv); +}