diff options
Diffstat (limited to 'otherlibs/unix/link.c')
-rw-r--r-- | otherlibs/unix/link.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/otherlibs/unix/link.c b/otherlibs/unix/link.c deleted file mode 100644 index 3c7ef671dc..0000000000 --- a/otherlibs/unix/link.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <mlvalues.h> -#include "unix.h" - -value unix_link(path1, path2) /* ML */ - value path1, path2; -{ - if (link(String_val(path1), String_val(path2)) == -1) uerror("link", path2); - return Val_unit; -} |