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

gid_t getgid(void)
{
	return __syscall(SYS_getgid);
}