summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/pipe.c')
-rw-r--r--libc/sysdeps/linux/common/pipe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/pipe.c b/libc/sysdeps/linux/common/pipe.c
index 2cd8dd2f5..2045b8d64 100644
--- a/libc/sysdeps/linux/common/pipe.c
+++ b/libc/sysdeps/linux/common/pipe.c
@@ -9,4 +9,6 @@
#include "syscalls.h"
#include <unistd.h>
-_syscall1(int, pipe, int *, filedes);
+#define __NR___pipe __NR_pipe
+attribute_hidden _syscall1(int, __pipe, int *, filedes);
+strong_alias(__pipe,pipe)