summaryrefslogtreecommitdiffstats
path: root/byterun/sys.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/sys.c')
-rw-r--r--byterun/sys.c8
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