Update of /cvsroot/python/python/dist/src/Include In directory usw-pr-cvs1:/tmp/cvs-serv10555/Include Modified Files: pythonrun.h Log Message: Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches. Index: pythonrun.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/pythonrun.h,v retrieving revision 2.51 retrieving revision 2.52 diff -C2 -d -r2.51 -r2.52 *** pythonrun.h 29 Jul 2002 13:42:06 -0000 2.51 --- pythonrun.h 2 Aug 2002 02:27:12 -0000 2.52 *************** *** 79,82 **** --- 79,85 ---- DL_IMPORT(int) Py_FdIsInteractive(FILE *, char *); + /* Bootstrap */ + PyAPI_FUNC(int) Py_Main(int argc, char **argv); + /* In getpath.c */ PyAPI_FUNC(char *) Py_GetProgramFullPath(void);