Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
5c1776fe007205a314d0a84f072484dd19aa3842
/
.
/
tests
/
geteuid32.c
blob: 7e731d060678a9ea3944dd8c86a71f97b46ae913 [
file
] [
log
] [
blame
]
#include
"tests.h"
#include
<sys/syscall.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