]> granicus.if.org Git - strace/blob - tests/getresgid32.c
Use <asm/unistd.h> instead of <sys/syscall.h>
[strace] / tests / getresgid32.c
1 #include "tests.h"
2 #include <asm/unistd.h>
3
4 #ifdef __NR_getresgid32
5
6 # define SYSCALL_NR     __NR_getresgid32
7 # define SYSCALL_NAME   "getresgid32"
8 # define UGID_TYPE      int
9 # include "getresugid.c"
10
11 #else
12
13 SKIP_MAIN_UNDEFINED("__NR_getresgid32")
14
15 #endif