setegid.c 98 B

1234567
  1. #include <unistd.h>
  2. #include <sys/types.h>
  3. int setegid(gid_t gid)
  4. {
  5. return setregid(-1, gid);
  6. }