mirror of
https://github.com/python/cpython
synced 2024-11-02 05:41:35 +00:00
4f98f465f1
Remove unused imports in files: * initconfig.c * main.c * preconfig.h * pylifecycle.c * python.c * pythonrun.c
17 lines
266 B
C
17 lines
266 B
C
/* 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_BytesMain(argc, argv);
|
|
}
|
|
#endif
|