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