plan9fox/sys/src/ape/lib/ap/plan9/getgroups.c
Ori Bernstein d4bc9052be Turn on warnings when building libap.
For ape, we never enabled warnings in cflags.
Turning it on brings up a lot of warnings. Most are noise,
but a few caught unused variables and trunctaions of pointers.
to smaller integers (int, long).

A few warnings remain.
2019-06-21 10:00:58 -07:00

11 lines
123 B
C

#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
int
getgroups(int, gid_t*)
{
errno = EINVAL;
return -1;
}