diff options
Diffstat (limited to 'otherlibs/unix/setgid.c')
-rw-r--r-- | otherlibs/unix/setgid.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/otherlibs/unix/setgid.c b/otherlibs/unix/setgid.c deleted file mode 100644 index eff8a444f0..0000000000 --- a/otherlibs/unix/setgid.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <mlvalues.h> -#include "unix.h" - -value unix_setgid(gid) /* ML */ - value gid; -{ - if (setgid(Int_val(gid)) == -1) uerror("setgid", Nothing); - return Val_unit; -} |