aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/getgid.c
blob: 1ffc51c93159caa0ce2375c85a2ccf3e48ff772d (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 getgid(void)
{
	return __syscall(SYS_getgid);
}


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