Staging
v0.8.1
Revision 2e382ca1b2c36c6fbdd26c9cf98e2764b43873ec authored by Guido van Rossum on 08 October 2002, 01:04:34 UTC, committed by Guido van Rossum on 08 October 2002, 01:04:34 UTC
1 parent 24f7c89
Raw File
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