summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/plan9/getgroups.c
blob: c26caaeb35f518c3c2db1a3297f68de5bee72f4c (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>

int
getgroups(int, gid_t*)
{
	errno = EINVAL;
	return -1;
}