diff options
Diffstat (limited to 'otherlibs/unix/setsid.c')
-rw-r--r-- | otherlibs/unix/setsid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/setsid.c b/otherlibs/unix/setsid.c index ada098c8b..b1d1f41dc 100644 --- a/otherlibs/unix/setsid.c +++ b/otherlibs/unix/setsid.c @@ -17,8 +17,7 @@ #include <unistd.h> #endif -value unix_setsid(unit) /* ML */ - value unit; +value unix_setsid(value unit) /* ML */ { #ifdef HAS_SETSID return Val_int(setsid()); |