xref: /plan9-contrib/sys/src/ape/lib/ap/plan9/getgroups.c (revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
1 #include <sys/types.h>
2 #include <unistd.h>
3 #include <errno.h>
4 
5 int
6 getgroups(int gidsize, gid_t grouplist[])
7 {
8 	errno = EINVAL;
9 	return -1;
10 }
11