xref: /plan9-contrib/sys/src/ape/lib/ap/plan9/getgroups.c (revision 7dd7cddf99dd7472612f1413b4da293630e6b1bc)
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