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