musl-tcc/src/unistd/setgid.c

9 lines
127 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
int setgid(gid_t gid)
{
return __setxid(SYS_setgid, gid, 0, 0);
}