summaryrefslogtreecommitdiff
path: root/src/unistd/getgroups.c
blob: 62a3207e5585c43e07333209945ba97f9d1226f4 (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 "nonstd/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)
*/