Staging
v0.8.1
Revision 24d6e3c56bf99fd122e23da4c843fed3eb2a8b1c authored by Miss Islington (bot) on 22 February 2018, 21:18:54 UTC, committed by Alexander Belopolsky on 22 February 2018, 21:18:54 UTC
(cherry picked from commit a049f5790e38fe1b1ba1d4c10ed5ab35150806fa)

Co-authored-by: Paul Ganssle <pganssle@users.noreply.github.com>
1 parent e5a9b35
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