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

int
getgroups(int gidsize, gid_t grouplist[])
{
	errno = EINVAL;
	return -1;
}