Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
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
);
}