summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/pipe.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-10 00:17:59 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-10 00:17:59 +0000
commit73130cae6071638370bf04d965f1e076c9710548 (patch)
treeda86d547aace26e433603c729e35526210598cc3 /libc/sysdeps/linux/common/pipe.c
parentccac11404612ae98a274001f619d343006fed3c0 (diff)
Do hidden pipe, please check the change in mips (.end __pipe?)
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)