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