diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1997-05-19 15:42:21 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1997-05-19 15:42:21 +0000 |
commit | 03ec746bf1afc498c91a4bff3a3f80d873594b95 (patch) | |
tree | 2d628930d146a469503d32f62181997a75e459a3 /byterun/sys.c | |
parent | 9f30d68f00c8933445d45416dcc7f67c7f1ca934 (diff) |
deTABisation
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1563 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/sys.c')
-rw-r--r-- | byterun/sys.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/byterun/sys.c b/byterun/sys.c index 100e942ea..e664f5b04 100644 --- a/byterun/sys.c +++ b/byterun/sys.c @@ -129,7 +129,7 @@ value sys_open(path, flags, perm) /* ML */ #if !macintosh ,Int_val(perm) #endif - ); + ); if (ret == -1) sys_error(path); return Val_long(ret); } @@ -180,7 +180,7 @@ value sys_chdir(dirname) /* ML */ return Val_unit; } -value sys_getcwd(unit) /* ML */ +value sys_getcwd(unit) /* ML */ value unit; { char buff[4096]; @@ -280,9 +280,9 @@ char * searchpath(name) /* We don't need searchpath on the Macintosh because there are no #! scripts */ char *searchpath (name) - char *name; + char *name; { - return name; + return name; } #else |