blob: a4d61d8cc372788f326a3a78512cd96ae53c27b6 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "asm/unistd_64.h" // for __NR_setregid
#include <syscall.h> // for __syscall_2, syscall
#include <unistd.h> // for gid_t, setregid
int setregid(gid_t rgid, gid_t egid)
{
return syscall(setregid, rgid, egid);
}
|