summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/getresgid.c
blob: bfecfbb289b0804551f3ac7647b4be50eb014882 (plain)
1
2
3
4
5
6
7
8
9
10



#include <syscall.h> // for __syscall_3, syscall
#include <unistd.h>  // for gid_t, getresgid

int getresgid(gid_t *restrict rgid, gid_t *restrict egid, gid_t *restrict sgid)
{
	return syscall(getresgid, rgid, egid, sgid);
}