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