Staging
v0.5.1
https://github.com/python/cpython
Revision 0b71ceaeff8af6e69e1c049de751edad70f9b632 authored by Fred Drake on 26 September 2000, 05:51:50 UTC, committed by Fred Drake on 26 September 2000, 05:51:50 UTC
1 parent d5fadf7
Raw File
Tip revision: 0b71ceaeff8af6e69e1c049de751edad70f9b632 authored by Fred Drake on 26 September 2000, 05:51:50 UTC
Note that including Python.h includes limits.h when available.
Tip revision: 0b71cea
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern DL_EXPORT(int) Py_Main(int, char **);

int
main(int argc, char **argv)
{
	return Py_Main(argc, argv);
}
back to top