blob: dbb9abb312b8428a9e0d11682d98b71f7da89924 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "asm/unistd_64.h" // for __NR_getgroups
#include <syscall.h> // for __syscall_2, syscall
#include <unistd.h> // for getgroups, gid_t
int getgroups(int gidsetsize, gid_t grouplist[])
{
return syscall(getgroups, gidsetsize, grouplist);
}
|