diff options
Diffstat (limited to 'otherlibs/unix/link.c')
-rw-r--r-- | otherlibs/unix/link.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/link.c b/otherlibs/unix/link.c index b9c17e4d1..e8fe69932 100644 --- a/otherlibs/unix/link.c +++ b/otherlibs/unix/link.c @@ -14,8 +14,7 @@ #include <mlvalues.h> #include "unixsupport.h" -value unix_link(path1, path2) /* ML */ - value path1, path2; +value unix_link(value path1, value path2) /* ML */ { if (link(String_val(path1), String_val(path2)) == -1) uerror("link", path2); return Val_unit; |