Staging
v0.8.1
Revision 6d2332d376ec4aebb6159dae6fecdc7759f9fd66 authored by Guido van Rossum on 10 April 2000, 17:52:44 UTC, committed by Guido van Rossum on 10 April 2000, 17:52:44 UTC
Do it in the project file rather than in the source,
so it's easier for Mark to change.
1 parent adb272c
Raw File
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