This is now the "real" main program -- it calls Py_Main(argc, argv)

which is in the library and does all the work.
This commit is contained in:
Guido van Rossum 1997-07-19 19:25:33 +00:00
parent 3768fb1097
commit 4c04be64b3
1 changed files with 10 additions and 0 deletions

10
Modules/python.c Normal file
View File

@ -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);
}