Staging
v0.5.1
https://github.com/python/cpython
Revision 55b4efd034780a069c9bbf5b080a62df32f51441 authored by Lars Gustäbel on 14 October 2000, 10:28:01 UTC, committed by Lars Gustäbel on 14 October 2000, 10:28:01 UTC
1 parent 6869245
Raw File
Tip revision: 55b4efd034780a069c9bbf5b080a62df32f51441 authored by Lars Gustäbel on 14 October 2000, 10:28:01 UTC
Fixed minor problem with reset().
Tip revision: 55b4efd
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