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

gid_t getegid(void)
{
	return syscall(SYS_getegid);
}