Staging
v0.5.1
Revision 2f6c878a1402ddd83ef913928f8355d491a03d1c authored by cvs2svn on 14 April 1998, 02:16:23 UTC, committed by cvs2svn on 14 April 1998, 02:16:23 UTC
1 parent 0332578
Raw File
python.c
/* Minimal main program -- everything is loaded from the library */

extern int Py_Main();

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