shithub: riscv

ref: 90032afb5f48daa2f05f572b645da92db945284f
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, gid_t*)
{
	errno = EINVAL;
	return -1;
}