Staging
v0.5.1
https://github.com/python/cpython
Revision 0e43db5baa9e1181bfd57accfec8252b049f20dc authored by Fred Drake on 08 July 2004, 03:59:33 UTC, committed by Fred Drake on 08 July 2004, 03:59:33 UTC
1 parent 63a0191
Raw File
Tip revision: 0e43db5baa9e1181bfd57accfec8252b049f20dc authored by Fred Drake on 08 July 2004, 03:59:33 UTC
bump the version number for 2.4a1
Tip revision: 0e43db5
ccpython.cc
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern "C"
DL_EXPORT(int) Py_Main( int argc, char *argv[] );

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