summaryrefslogtreecommitdiff
path: root/Programs/python.c
blob: 78e48f800c950530e36d3712d9e2e89673f23562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

#ifdef MS_WINDOWS
int
wmain(int argc, wchar_t **argv)
{
    return Py_Main(argc, argv);
}
#else
int
main(int argc, char **argv)
{
    return _Py_UnixMain(argc, argv);
}
#endif