Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
5cf68f97d597dba3f717070520df4f8407154b2f
/
.
/
tests
/
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