Sign in
mojo
/
mojo-tools
/
9cdeb358dcfb243d039e9692e87fc038ec63cf5e
/
.
/
fusl
/
src
/
linux
/
setfsgid.c
blob: ad8042250360ce23a49b5be024f8be9e37f54421 [
file
] [
log
] [
blame
]
#include
<sys/fsuid.h>
#include
"syscall.h"
#include
"libc.h"
int
setfsgid
(
gid_t
gid
)
{
return
syscall
(
SYS_setfsgid
,
gid
);
}