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