]> granicus.if.org Git - strace/blob - tests/getresgid.c
strace: terminate itself if interrupted by a signal
[strace] / tests / getresgid.c
1 #include "tests.h"
2 #include <asm/unistd.h>
3
4 #ifdef __NR_getresgid
5
6 # define SYSCALL_NR     __NR_getresgid
7 # define SYSCALL_NAME   "getresgid"
8
9 # if defined __NR_getresgid32 && __NR_getresgid != __NR_getresgid32
10 #  define UGID_TYPE     short
11 # else
12 #  define UGID_TYPE     int
13 # endif
14
15 # include "getresugid.c"
16
17 #else
18
19 SKIP_MAIN_UNDEFINED("__NR_getresgid")
20
21 #endif