diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2000-04-04 13:18:45 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2000-04-04 13:18:45 +0000 |
commit | 043a6fbd1838e968a1938dd23a9a1d6f78604865 (patch) | |
tree | 66230bf182e686083089460fb4e54b85b0b46681 /byterun/macintosh.c | |
parent | 6c5c4c2826a5699181f5c21598e0dbc5c157c335 (diff) |
Deplacer searchpath de sys vers macintosh
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3039 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/macintosh.c')
-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; +} |