0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00
cpython/Modules/python.c

14 lines
203 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"
1998-12-07 15:28:47 +01:00
extern DL_EXPORT(int) Py_Main();
1997-08-15 04:52:08 +02:00
int
main(argc, argv)
int argc;
char **argv;
{
return Py_Main(argc, argv);
}