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