Staging
v0.5.1
https://github.com/python/cpython
Revision 6f8f92f535c57eae0174a3c76da3801be8769834 authored by Guido van Rossum on 01 September 2000, 19:27:34 UTC, committed by Guido van Rossum on 01 September 2000, 19:27:34 UTC
1 parent 9acdd3a
Raw File
Tip revision: 6f8f92f535c57eae0174a3c76da3801be8769834 authored by Guido van Rossum on 01 September 2000, 19:27:34 UTC
Adding new files, removing some.
Tip revision: 6f8f92f
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