Staging
v0.5.1
Revision 49a5f47a957e8a04d245bfcdbc110a4e19222cf2 authored by Fred Drake on 22 May 2003, 14:56:37 UTC, committed by Fred Drake on 22 May 2003, 14:56:37 UTC
1 parent bccf8f3
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