summaryrefslogtreecommitdiff
path: root/src/unistd/getpgrp.c
blob: 5a3257901dce713ab562f95c5e3ca9b1c116920f (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include "_syscall.h"

pid_t getpgrp(void)
{
	SYSCALL(getpgrp, pid_t, -1, 0, 0, 0, 0, 0, 0);
}
/*
POSIX(1)
*/