0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 08:52:25 +01:00
cpython/Modules/python.c

10 lines
155 B
C
Raw Normal View History

/* Minimal main program -- everything is loaded from the library */
1998-08-08 22:01:22 +02:00
#include "Python.h"
1997-08-15 04:52:08 +02:00
int
main(int argc, char **argv)
{
return Py_Main(argc, argv);
}