diff options
Diffstat (limited to 'Mac/Python/macgetargv.c')
-rw-r--r-- | Mac/Python/macgetargv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c index 2c90997..7c34360 100644 --- a/Mac/Python/macgetargv.c +++ b/Mac/Python/macgetargv.c @@ -75,8 +75,8 @@ strdup(char *src) /* Return FSSpec of current application */ -static OSErr -current_process_location(FSSpec *applicationSpec) +OSErr +PyMac_process_location(FSSpec *applicationSpec) { ProcessSerialNumber currentPSN; ProcessInfoRec info; @@ -155,7 +155,7 @@ get_application_name() static char appname[256]; FSSpec appspec; - if (current_process_location(&appspec)) + if (PyMac_process_location(&appspec)) return NULL; if (get_full_path(&appspec, appname)) return NULL; |