Sign in
android
/
platform
/
external
/
strace
/
b65e7a8b16e6edd4c1591d9f94d36eec9cfe3ea0
/
.
/
tests
/
getuid.c
blob: 57311f72dab32aa59f7ff4e4f5378fc8596c2f99 [
file
] [
log
] [
blame
]
#include
"tests.h"
#include
<asm/unistd.h>
#ifdef
__NR_getuid
# include <stdio.h>
# include <unistd.h>
int
main
(
void
)
{
printf
(
"getuid() = %ld\n"
,
syscall
(
__NR_getuid
));
return
0
;
}
#else
SKIP_MAIN_UNDEFINED
(
"__NR_getuid"
)
#endif