Staging
v0.5.1
https://github.com/python/cpython
Revision 94505a7cc0a40f2b4a5256f27d8ab32266e6b0d4 authored by Fred Drake on 19 January 2005, 03:42:10 UTC, committed by Fred Drake on 19 January 2005, 03:42:10 UTC
(closes SF patch #1104868)
1 parent 623273e
Raw File
Tip revision: 94505a7cc0a40f2b4a5256f27d8ab32266e6b0d4 authored by Fred Drake on 19 January 2005, 03:42:10 UTC
fix a bunch of spelling errors
Tip revision: 94505a7
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