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