0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Modules/python.c

12 lines
171 B
C
Raw Normal View History

/* Minimal main program -- everything is loaded from the library */
extern int Py_Main();
1997-08-15 04:52:08 +02:00
int
main(argc, argv)
int argc;
char **argv;
{
return Py_Main(argc, argv);
}