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