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