Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
unistd
/
getuid.c
blob: 61309d1b791497663f6942b0b9197078597f14a0 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
uid_t
getuid
(
void
)
{
return
__syscall
(
SYS_getuid
);
}