repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
delete a redundant if in dynamic linker ctor execution loop
[musl.git]
/
src
/
linux
/
setfsgid.c
blob
e29d9c006906eeda30c2c51faf1788843ec82b95
1
#include <sys/fsuid.h>
2
#include
"syscall.h"
3
4
int
setfsgid
(
gid_t gid
)
5
{
6
return
syscall
(
SYS_setfsgid
,
gid
);
7
}