Sign in
android
/
platform
/
external
/
strace
/
b65e7a8b16e6edd4c1591d9f94d36eec9cfe3ea0
/
.
/
tests
/
getgid32.c
blob: 52e4d76a0b2c6e3e6de48627e141e1f73c0ffb94 [
file
] [
log
] [
blame
]
#include
"tests.h"
#include
<asm/unistd.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