blob: 7e731d060678a9ea3944dd8c86a71f97b46ae913 [file] [log] [blame]
Dmitry V. Levinf0964222016-04-19 18:28:03 +00001#include "tests.h"
2#include <sys/syscall.h>
3
4#ifdef __NR_geteuid32
5
6# include <stdio.h>
7# include <unistd.h>
8
9int
10main(void)
11{
12 printf("geteuid32() = %ld\n", syscall(__NR_geteuid32));
13 return 0;
14}
15
16#else
17
18SKIP_MAIN_UNDEFINED("__NR_geteuid32")
19
20#endif