Staging
v0.8.1
Revision b38ff71501a8653fdc4aff7dee78680008185ab7 authored by Andrés Delfino on 06 October 2018, 02:37:14 UTC, committed by Ned Deily on 06 October 2018, 02:37:14 UTC
1 parent 414d58f
Raw File
python.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_UnixMain(argc, argv);
}
#endif
back to top