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