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

12 lines
171 B
C

/* Minimal main program -- everything is loaded from the library */
extern int Py_Main();
int
main(argc, argv)
int argc;
char **argv;
{
return Py_Main(argc, argv);
}