Staging
v0.5.1
https://github.com/python/cpython
Revision fcfa195eec472225025da66194d8ad167436f409 authored by Martin v. Löwis on 18 February 2005, 16:13:06 UTC, committed by Martin v. Löwis on 18 February 2005, 16:13:06 UTC
1 parent ffcd655
Raw File
Tip revision: fcfa195eec472225025da66194d8ad167436f409 authored by Martin v. Löwis on 18 February 2005, 16:13:06 UTC
Avoid using *W functions on Win95.
Tip revision: fcfa195
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