diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-04 00:44:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-04 00:44:42 +0000 |
commit | 2aa7788e7f161b9c51f3f5ec685b280fe42e380d (patch) | |
tree | be7d489bd870ab6815e716bcd4e38072b4fcaaa9 /libc | |
parent | f9ff85a50a2fd0041289fdcb07f701f157b0d295 (diff) |
use weak handling instead of .set
Diffstat (limited to 'libc')
-rw-r--r-- | libc/sysdeps/linux/mips/pipe.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/mips/pipe.S b/libc/sysdeps/linux/mips/pipe.S index 1936d7626..fb8f7ef7f 100644 --- a/libc/sysdeps/linux/mips/pipe.S +++ b/libc/sysdeps/linux/mips/pipe.S @@ -8,7 +8,6 @@ #include <asm/regdef.h> .globl pipe - .set pipe,__pipe .globl __pipe .hidden __pipe .ent __pipe, 0 @@ -32,3 +31,4 @@ __pipe: j ra .end __pipe .size __pipe,.-__pipe + .weak pipe; pipe = __pipe |