]> granicus.if.org Git - strace/blob - tests/geteuid32.c
strace: terminate itself if interrupted by a signal
[strace] / tests / geteuid32.c
1 #include "tests.h"
2 #include <asm/unistd.h>
3
4 #ifdef __NR_geteuid32
5
6 # include <stdio.h>
7 # include <unistd.h>
8
9 int
10 main(void)
11 {
12         printf("geteuid32() = %ld\n", syscall(__NR_geteuid32));
13         return 0;
14 }
15
16 #else
17
18 SKIP_MAIN_UNDEFINED("__NR_geteuid32")
19
20 #endif