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