summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/unix.ml
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1999-08-19 13:53:20 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1999-08-19 13:53:20 +0000
commitedcb1520b28bdeba6a49576e04ce105b978b945f (patch)
tree46cd18302c1185221d5c698c33ae6ab9b54435ed /otherlibs/win32unix/unix.ml
parentb19ada25b9e5d4fa1bcd40003ebf2942bbc81e0b (diff)
Ajout de chmod (requete de Trevor Jim)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2394 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/unix.ml')
-rw-r--r--otherlibs/win32unix/unix.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/win32unix/unix.ml b/otherlibs/win32unix/unix.ml
index 0870304df..c85fcafd2 100644
--- a/otherlibs/win32unix/unix.ml
+++ b/otherlibs/win32unix/unix.ml
@@ -260,7 +260,7 @@ type access_permission =
| X_OK
| F_OK
-let chmod file perm = invalid_arg "Unix.chmod not implemented"
+external chmod : string -> file_perm -> unit = "unix_chmod"
let fchmod fd perm = invalid_arg "Unix.fchmod not implemented"
let chown file perm = invalid_arg "Unix.chown not implemented"
let fchown fd perm = invalid_arg "Unix.fchown not implemented"