blob: 3eee06f471ee65aee01a727fac3dbd2ead0fdfa1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
}
|