summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libc/sysdeps/linux/ia64/pipe.S7
-rw-r--r--libc/sysdeps/linux/mips/pipe.S11
2 files changed, 8 insertions, 10 deletions
diff --git a/libc/sysdeps/linux/ia64/pipe.S b/libc/sysdeps/linux/ia64/pipe.S
index a86536b13..2bfa8a71f 100644
--- a/libc/sysdeps/linux/ia64/pipe.S
+++ b/libc/sysdeps/linux/ia64/pipe.S
@@ -21,7 +21,7 @@
#include "sysdep.h"
-ENTRY(__pipe)
+ENTRY(pipe)
.regstk 1,0,0,0
DO_CALL (SYS_ify (pipe))
cmp.ne p6,p0=-1,r10
@@ -32,7 +32,6 @@ ENTRY(__pipe)
(p6) st4 [in0]=r9
(p6) ret
br.cond.spnt.few __syscall_error
-PSEUDO_END(__pipe)
+PSEUDO_END(pipe)
-libc_hidden_def (__pipe)
-weak_alias (__pipe, pipe)
+libc_hidden_def (pipe)
diff --git a/libc/sysdeps/linux/mips/pipe.S b/libc/sysdeps/linux/mips/pipe.S
index 91c03dac5..488d9cfb9 100644
--- a/libc/sysdeps/linux/mips/pipe.S
+++ b/libc/sysdeps/linux/mips/pipe.S
@@ -7,9 +7,9 @@
#include <asm/unistd.h>
#include <asm/regdef.h>
- .globl __pipe
- .ent __pipe, 0
-__pipe:
+ .globl pipe
+ .ent pipe, 0
+pipe:
.frame sp, 24, sp
#ifdef __PIC__
.set noreorder
@@ -38,7 +38,6 @@ __pipe:
2:
addiu sp,sp,24
j ra
- .end __pipe
- .size __pipe,.-__pipe
+ .end pipe
+ .size pipe,.-pipe
libc_hidden_def(pipe)
-weak_alias(__pipe, pipe)