Sign in
◑
Theme
mojo
/
mojo-tools
/
db06898a53770ff272c75ba012a757597fc0e2c5
/
.
/
fusl
/
src
/
unistd
/
setegid.c
blob: ee77699e6186d3236c71c0a5510e3646f04af313 [
file
]
#include
<unistd.h>
#include
"libc.h"
#include
"syscall.h"
int
setegid
(
gid_t
egid
)
{
return
__setxid
(
SYS_setresgid
,
-
1
,
egid
,
-
1
);
}