mirror of
https://github.com/python/cpython.git
synced 2024-11-26 03:14:27 +08:00
4c04be64b3
which is in the library and does all the work.
11 lines
167 B
C
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);
|
|
}
|