Files
semi-libc/src/unistd/setsid.c
T

8 lines
94 B
C

#include <unistd.h>
#include "syscall.h"
pid_t setsid(void)
{
return syscall(SYS_setsid);
}