Staging
v0.5.1
https://github.com/python/cpython
Revision 5bd919b6d7feed1ba3a89098accf80ffe9e1e490 authored by Guido van Rossum on 08 October 1997, 15:26:56 UTC, committed by Guido van Rossum on 08 October 1997, 15:26:56 UTC
1 parent b189a2f
Raw File
Tip revision: 5bd919b6d7feed1ba3a89098accf80ffe9e1e490 authored by Guido van Rossum on 08 October 1997, 15:26:56 UTC
Include macbuildno.h here (mac only) (Jack)
Tip revision: 5bd919b
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