summaryrefslogtreecommitdiffstats
path: root/usr/klibc/getpgrp.c
blob: b20b17a0b93564b847364252de0bf156283f8014 (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * getpgrp.c
 */

#include <unistd.h>

pid_t getpgrp(void)
{
	return getpgid(0);
}