Sign in
android
/
platform
/
external
/
musl
/
0790ccba6a82147e2fadcc4b94996475512d817a
/
.
/
src
/
unistd
/
getgid.c
blob: 1c9fe7157b351c8858c2e6d1e2aba96eb2231e20 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
gid_t
getgid
(
void
)
{
return
__syscall
(
SYS_getgid
);
}