aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/getegid.c
blob: 01bf2aadf9cf5927e59815f5af412d057019ac06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>
#include "syscall.h"

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif