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