summaryrefslogtreecommitdiff
path: root/src/unistd/setsid.c
blob: e2c5690c8f66b74af1aa5ec03a586ded0a37a15f (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>
#include "syscall.h"

pid_t setsid(void)
{
	return syscall0(__NR_setsid);
}