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

gid_t getgid(void)
{
	return syscall0(__NR_getgid);
}