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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c04be64b38d9f44f4b80fdabf3ef81d88717d83;p=thirdparty%2FPython%2Fcpython.git 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 000000000000..8a638c7b78de --- /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); +}