diff options
Diffstat (limited to 'otherlibs/unix/setuid.c')
-rw-r--r-- | otherlibs/unix/setuid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/setuid.c b/otherlibs/unix/setuid.c index 4b3a1d9b4..b7a28204f 100644 --- a/otherlibs/unix/setuid.c +++ b/otherlibs/unix/setuid.c @@ -14,8 +14,7 @@ #include <mlvalues.h> #include "unixsupport.h" -value unix_setuid(uid) /* ML */ - value uid; +value unix_setuid(value uid) /* ML */ { if (setuid(Int_val(uid)) == -1) uerror("setuid", Nothing); return Val_unit; |