aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/getgroups.c
blob: f02608173a0cafcc94841130b74ec6a707cf2ac7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>
#include "syscall.h"

int getgroups(int count, gid_t list[])
{
	return syscall(SYS_getgroups, count, list);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif