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