Sign in
mojo
/
mojo-tools
/
ce913b53e2545ddd4d4a565997d0816e8ef90a22
/
.
/
fusl
/
src
/
unistd
/
setgid.c
blob: 79daec9ea248db1d0949dfc938ec0ca56b3097be [
file
]
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
int
setgid
(
gid_t
gid
)
{
return
__setxid
(
SYS_setgid
,
gid
,
0
,
0
);
}