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

pid_t getpgrp(void)
{
	return syscall(SYS_getpgrp);
}