mirror of https://github.com/python/cpython
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:
parent
3768fb1097
commit
4c04be64b3
|
@ -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);
|
||||
}
|
Loading…
Reference in New Issue