diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/catch-syscall.c')
-rw-r--r-- | gdb/testsuite/gdb.base/catch-syscall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/catch-syscall.c b/gdb/testsuite/gdb.base/catch-syscall.c index 0ab9631..8c252a0 100644 --- a/gdb/testsuite/gdb.base/catch-syscall.c +++ b/gdb/testsuite/gdb.base/catch-syscall.c @@ -24,7 +24,8 @@ int chroot_syscall = SYS_chroot; int read_syscall = SYS_read; #ifdef SYS_pipe int pipe_syscall = SYS_pipe; -#else +#endif +#ifdef SYS_pipe2 int pipe2_syscall = SYS_pipe2; #endif int write_syscall = SYS_write; |