blob: f92139f352ebd11bb5ca33fb3a44ebdbd8a6cf53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <sys/types.h>
#include "_syscall.h"
#include "_assert.h"
int getgroups(int gidsetsize, gid_t grouplist[])
{
if (gidsetsize != 0) {
ASSERT_NONNULL(grouplist);
}
SYSCALL(getgroups, int, -1, gidsetsize, grouplist, 0, 0, 0, 0);
}
/*
POSIX(1)
*/
|