summaryrefslogtreecommitdiff
path: root/otherlibs/unix/unlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/unlink.c')
-rw-r--r--otherlibs/unix/unlink.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/otherlibs/unix/unlink.c b/otherlibs/unix/unlink.c
deleted file mode 100644
index 67684f473a..0000000000
--- a/otherlibs/unix/unlink.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <mlvalues.h>
-#include "unix.h"
-
-value unix_unlink(path) /* ML */
- value path;
-{
- if (unlink(String_val(path)) == -1) uerror("unlink", path);
- return Val_unit;
-}