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