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