0
0
mirror of https://github.com/python/cpython.git synced 2024-11-30 18:51:15 +01:00
cpython/Programs/python.c

18 lines
266 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"
#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
return Py_Main(argc, argv);
}
#else
1997-08-15 04:52:08 +02:00
int
main(int argc, char **argv)
{
return _Py_UnixMain(argc, argv);
}
#endif