diff options
Diffstat (limited to 'Programs/python.c')
-rw-r--r-- | Programs/python.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Programs/python.c b/Programs/python.c deleted file mode 100644 index 1cc3c42..0000000 --- a/Programs/python.c +++ /dev/null @@ -1,18 +0,0 @@ -/* Minimal main program -- everything is loaded from the library */ - -#include "Python.h" -#include "pycore_pylifecycle.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_BytesMain(argc, argv); -} -#endif |