Sign in
◑
Theme
mojo
/
mojo-tools
/
11b993425b6dd123103ed48498ed6f96b35d6f73
/
.
/
fusl
/
src
/
linux
/
setfsgid.c
blob: 3a7398e8a4ed92a93a5b9583b82c61589edfcecb [
file
]
#include
<sys/fsuid.h>
#include
"syscall.h"
#include
"libc.h"
int
setfsgid
(
gid_t
gid
)
{
return
syscall
(
SYS_setfsgid
,
gid
);
}