diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2009-04-01 16:50:10 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2009-04-01 16:50:10 +0000 |
commit | 238cf4bde3037f3bac90ab476a25bf794156e844 (patch) | |
tree | 8fcf447d81f6d00a5ca40b25486e6ed9a5a5e29a /otherlibs/win32unix/unix.ml | |
parent | 3c9c7b99493a38590e8848dbac1b0b08d7ea995e (diff) |
PR#3047: added Unix.setgroups, Unix.initgroups.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9220 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/unix.ml')
-rw-r--r-- | otherlibs/win32unix/unix.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/otherlibs/win32unix/unix.ml b/otherlibs/win32unix/unix.ml index 2b4411659..f8d663170 100644 --- a/otherlibs/win32unix/unix.ml +++ b/otherlibs/win32unix/unix.ml @@ -435,6 +435,8 @@ let getegid = getgid let setgid id = invalid_arg "Unix.setgid not implemented" let getgroups () = [|1|] +let setgroups _ = invalid_arg "Unix.setgroups not implemented" +let initgroups _ _ = invalid_arg "Unix.initgroups not implemented" type passwd_entry = { pw_name : string; |