diff options
-rw-r--r-- | byterun/macintosh.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/byterun/macintosh.c b/byterun/macintosh.c index ac2e02738..9d69b32d0 100644 --- a/byterun/macintosh.c +++ b/byterun/macintosh.c @@ -273,3 +273,10 @@ int system (char const *cmd) RotateCursor (32); return result; } + +/* We don't need searchpath on the Macintosh because there are no #! scripts */ + +char *searchpath (char * name) +{ + return name; +} |