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

gid_t getegid(void)
{
	return syscall0(__NR_getegid);
}