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