getgroups.c 142 B

12345678910
  1. #include <sys/types.h>
  2. #include <unistd.h>
  3. #include <errno.h>
  4. int
  5. getgroups(int gidsize, gid_t grouplist[])
  6. {
  7. errno = EINVAL;
  8. return -1;
  9. }