aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/setpgrp.c
blob: 3a68846e7d5827ccfc9804d1ae130e1a370d786a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <unistd.h>

pid_t setpgrp(void)
{
	return setpgid(0, 0);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif