summaryrefslogtreecommitdiff
path: root/src/unistd/getsid.c
blob: 671b19ecbd6262d6e2cc3e7e491a3fcc188b73f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>

pid_t getsid(pid_t pid)
{
	return pid;
}

/*
XOPEN(400)
POSIX(200809)
*/