Sign in
mojo
/
mojo-testing
/
f56fd59ec51e1ecdd52fb848ceff1b6b6fe7f7fa
/
.
/
fusl
/
src
/
unistd
/
setsid.c
blob: 6f380d4520d3e9de67f8d58d5a111d001edd4ac4 [
file
]
#include
<unistd.h>
#include
"syscall.h"
pid_t
setsid
(
void
)
{
return
syscall
(
SYS_setsid
);
}