Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
de400b6609becbc6a5ae87fa8b155f02a860e257
/
.
/
src
/
unistd
/
setgid.c
blob: bae4616adb3b9432095aa35f35aeeed36b6e17b3 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
int
setgid
(
gid_t
gid
)
{
return
__setxid
(
SYS_setgid
,
gid
,
0
,
0
);
}