setfsgid.c 109 B

1234567
  1. #include <sys/fsuid.h>
  2. #include "syscall.h"
  3. int setfsgid(gid_t gid)
  4. {
  5. return syscall(SYS_setfsgid, gid);
  6. }