Sign in
nest-open-source
/
nest-cam
/
4320010
/
strace
/
refs/heads/master
/
.
/
strace
/
tests
/
getuid.c
blob: 25731c8b27ed1aa8325cc2bdc90f840d63e0171c [
file
] [
log
] [
blame
] [
edit
]
#include
"tests.h"
#include
<sys/syscall.h>
#ifdef
__NR_getuid
# include <stdio.h>
# include <unistd.h>
int
main
(
void
)
{
printf
(
"getuid() = %ld\n"
,
syscall
(
__NR_getuid
));
return
0
;
}
#else
SKIP_MAIN_UNDEFINED
(
"__NR_getuid"
)
#endif