diff options
Diffstat (limited to 'Mac/Python/macmain.c')
-rw-r--r-- | Mac/Python/macmain.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c index 8b2a1fd..e3e9615 100644 --- a/Mac/Python/macmain.c +++ b/Mac/Python/macmain.c @@ -44,6 +44,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef __MWERKS__ #include <SIOUX.h> #define USE_SIOUX +extern int ccommand(char ***); #if __profile__ == 1 #include <profiler.h> #endif @@ -549,9 +550,7 @@ Py_GetProgramFullPath() This is rare, but it is needed by the secureware extension. */ void -Py_GetArgcArgv(argc,argv) - int *argc; - char ***argv; +Py_GetArgcArgv(int *argc,char ***argv) { *argc = orig_argc; *argv = orig_argv; |