blob: 11580d0a3f0b896f1401f395218be9a8b14d1b0f [file] [log] [blame]
#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