blob: 7e731d060678a9ea3944dd8c86a71f97b46ae913 [file] [log] [blame]
#include "tests.h"
#include <sys/syscall.h>
#ifdef __NR_geteuid32
# include <stdio.h>
# include <unistd.h>
int
main(void)
{
printf("geteuid32() = %ld\n", syscall(__NR_geteuid32));
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_geteuid32")
#endif