Staging
v0.8.1
https://github.com/python/cpython
Revision 1d16a9f040aadbfff9a0628d185c44c4159ce0b3 authored by Greg Ward on 29 March 2000, 04:13:49 UTC, committed by Greg Ward on 29 March 2000, 04:13:49 UTC
1 parent 41b4dd6
Raw File
Tip revision: 1d16a9f040aadbfff9a0628d185c44c4159ce0b3 authored by Greg Ward on 29 March 2000, 04:13:49 UTC
Put the Python "system" include dir last, rather than first.
Tip revision: 1d16a9f
python.c
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern DL_EXPORT(int) Py_Main();

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