summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/mips/pipe.S
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-02-15 19:16:47 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-02-15 19:16:47 +0000
commit8319335430e4605a8a673719915414cd0b300b3e (patch)
treeed6713d6e9cc226ed8efe5ebc7457ab903e9fc42 /libc/sysdeps/linux/mips/pipe.S
parentfbe3670d4e5fa2cbf08a643fb3581b97b8b86b7d (diff)
get rid of __pipe
Diffstat (limited to 'libc/sysdeps/linux/mips/pipe.S')
-rw-r--r--libc/sysdeps/linux/mips/pipe.S11
1 files changed, 5 insertions, 6 deletions
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)