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