Staging
v0.5.1
https://github.com/python/cpython
Revision acda14034163767a1fb8d06ac1ab8e2957405505 authored by Fred Drake on 15 December 2001, 20:42:52 UTC, committed by Fred Drake on 15 December 2001, 20:42:52 UTC
1 parent da6bc66
Raw File
Tip revision: acda14034163767a1fb8d06ac1ab8e2957405505 authored by Fred Drake on 15 December 2001, 20:42:52 UTC
Remove extraneous "}"; possibly an incorrectly backported patch?
Tip revision: acda140
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