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