diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-15 19:16:47 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-15 19:16:47 +0000 |
commit | 8319335430e4605a8a673719915414cd0b300b3e (patch) | |
tree | ed6713d6e9cc226ed8efe5ebc7457ab903e9fc42 /libc/sysdeps/linux/ia64/pipe.S | |
parent | fbe3670d4e5fa2cbf08a643fb3581b97b8b86b7d (diff) |
get rid of __pipe
Diffstat (limited to 'libc/sysdeps/linux/ia64/pipe.S')
-rw-r--r-- | libc/sysdeps/linux/ia64/pipe.S | 7 |
1 files changed, 3 insertions, 4 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) |