Staging
v0.5.1
https://github.com/python/cpython
Revision fd85a4e600348a854b4979d16a51fe2b2ae30794 authored by Tim Peters on 02 March 2001, 03:11:53 UTC, committed by Tim Peters on 02 March 2001, 03:11:53 UTC
1 parent 03bd26d
Raw File
Tip revision: fd85a4e600348a854b4979d16a51fe2b2ae30794 authored by Tim Peters on 02 March 2001, 03:11:53 UTC
Typo repair.
Tip revision: fd85a4e
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