summaryrefslogtreecommitdiff
path: root/src/unistd/setsid.c
blob: 5c39fe0a035c56748f383c90c376f7c811faaa3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"

pid_t setsid(void)
{
	SC0(pid_t);
}
/*
POSIX(1)
*/