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


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

int setresgid(gid_t rgid, gid_t egid, gid_t sgid)
{
	return syscall(setresgid, rgid, egid, sgid);
}