musl-tcc/src/unistd/setregid.c

9 lines
148 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 setregid(gid_t rgid, gid_t egid)
{
return __setxid(SYS_setregid, rgid, egid, 0);
}