shithub: riscv

ref: 243c25fd8f397ff37c1ad597524cccd23db46d1c
dir: /sys/src/ape/lib/ap/plan9/getgroups.c/

View raw version
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>

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