summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/mips/pipe.S
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-15 19:05:28 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-15 19:05:28 +0000
commitfbe3670d4e5fa2cbf08a643fb3581b97b8b86b7d (patch)
tree4690f6a0c042dd0c1fb22b2ab7a859371de3a252 /libc/sysdeps/linux/mips/pipe.S
parenta0f92029367b04f7cf6001dddfc6dc76bf6b1aca (diff)
Sloppy patching on my part. This should be correct.
Diffstat (limited to 'libc/sysdeps/linux/mips/pipe.S')
-rw-r--r--libc/sysdeps/linux/mips/pipe.S6
1 files changed, 2 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/mips/pipe.S b/libc/sysdeps/linux/mips/pipe.S
index f80002118..91c03dac5 100644
--- a/libc/sysdeps/linux/mips/pipe.S
+++ b/libc/sysdeps/linux/mips/pipe.S
@@ -7,9 +7,7 @@
#include <asm/unistd.h>
#include <asm/regdef.h>
- .globl pipe
.globl __pipe
- .hidden __pipe
.ent __pipe, 0
__pipe:
.frame sp, 24, sp
@@ -42,5 +40,5 @@ __pipe:
j ra
.end __pipe
.size __pipe,.-__pipe
- .weak pipe
- pipe = __pipe
+libc_hidden_def(pipe)
+weak_alias(__pipe, pipe)