Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
unistd
/
setresgid.c
blob: b9af540af2e66516b5105cbb694b9d4a7c3645af [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
int
setresgid
(
gid_t
rgid
,
gid_t
egid
,
gid_t
sgid
)
{
return
__setxid
(
SYS_setresgid
,
rgid
,
egid
,
sgid
);
}