cpython/Modules/python.c
Guido van Rossum 4c04be64b3 This is now the "real" main program -- it calls Py_Main(argc, argv)
which is in the library and does all the work.
1997-07-19 19:25:33 +00:00

11 lines
167 B
C

/* 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);
}