Sign in
nest-open-source
/
nest-cam
/
4320010
/
strace
/
refs/heads/master
/
.
/
strace
/
tests
/
getuid32.c
blob: c6f68ae072bf6180d2c40e36c53bfee3464d5b87 [
file
] [
log
] [
blame
] [
edit
]
#include
"tests.h"
#include
<sys/syscall.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