Staging
v0.5.1
https://github.com/python/cpython
Revision 4bfde07d35a394720f28b9e1c1c95d314293e2da authored by Martin v. Löwis on 07 July 2003, 21:44:00 UTC, committed by Martin v. Löwis on 07 July 2003, 21:44:00 UTC
1 parent 2045f56
Raw File
Tip revision: 4bfde07d35a394720f28b9e1c1c95d314293e2da authored by Martin v. Löwis on 07 July 2003, 21:44:00 UTC
Use -fno-strict-aliasing on gcc 3.3. Fixes #766696.
Tip revision: 4bfde07
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