Staging
v0.5.1
https://github.com/python/cpython
Revision 15f611845b15ce8787e0b2399f2ecd686fe46f52 authored by cvs2svn on 02 September 2004, 16:38:20 UTC, committed by cvs2svn on 02 September 2004, 16:38:20 UTC
1 parent f30bc11
Raw File
Tip revision: 15f611845b15ce8787e0b2399f2ecd686fe46f52 authored by cvs2svn on 02 September 2004, 16:38:20 UTC
This commit was manufactured by cvs2svn to create tag 'r24a3'.
Tip revision: 15f6118
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