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


#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);
}