summaryrefslogtreecommitdiff
path: root/src/unistd/getgroups.c
blob: 356adaa3a3e1288f8eaf0eb25d6056176ce3ac4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "errno.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)
*/