summaryrefslogtreecommitdiff
path: root/tests/geteuid32.c
blob: 7e731d060678a9ea3944dd8c86a71f97b46ae913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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