diff options
Diffstat (limited to 'Mac/Python/macgetargv.c')
-rw-r--r-- | Mac/Python/macgetargv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mac/Python/macgetargv.c b/Mac/Python/macgetargv.c index 1eb4a54..b4a3ec6 100644 --- a/Mac/Python/macgetargv.c +++ b/Mac/Python/macgetargv.c @@ -53,15 +53,16 @@ static int applocation_inited; /* Duplicate a string to the heap. We also export this since it isn't standard ** and others use it */ - +#ifndef HAVE_STRDUP char * -strdup(char *src) +strdup(const char *src) { char *dst = malloc(strlen(src) + 1); if (dst) strcpy(dst, src); return dst; } +#endif /* Initialize FSSpec and full name of current application */ |