shithub: riscv

ref: 7f224a8f6d343cf0aaf162cc9b9f7d4d62ac78ac
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;
}