Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
aaa7a77b5f79ec3b99806f5de9abdb5d70516b1d
/
.
/
tests
/
getuid32.c
blob: 397dd08ff1667b546ccca313c3c7def20bd2f8eb [
file
] [
log
] [
blame
]
#include
"tests.h"
#include
<asm/unistd.h>
#ifdef
__NR_getuid32
# include <stdio.h>
# include <unistd.h>
int
main
(
void
)
{
printf
(
"getuid32() = %ld\n"
,
syscall
(
__NR_getuid32
));
return
0
;
}
#else
SKIP_MAIN_UNDEFINED
(
"__NR_getuid32"
)
#endif