Staging
v0.8.1
https://github.com/python/cpython
Revision 6db8cd1c28a8be2f39ee6a658ea98dbe087374b5 authored by Jack Jansen on 04 January 2005, 16:07:04 UTC, committed by Jack Jansen on 04 January 2005, 16:07:04 UTC
1 parent 0446d8f
Raw File
Tip revision: 6db8cd1c28a8be2f39ee6a658ea98dbe087374b5 authored by Jack Jansen on 04 January 2005, 16:07:04 UTC
Mac news items.
Tip revision: 6db8cd1
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