mirror of git://sourceware.org/git/glibc.git
* sysdeps/unix/mips/fork.S: add PSEUDO_END.
* sysdeps/unix/mips/brk.S: Likewise. * sysdeps/unix/mips/pipe.S: Likewise.
This commit is contained in:
parent
c7aa3cacfc
commit
9cc157d474
|
@ -42,6 +42,6 @@ SYSCALL__(brk, 1)
|
|||
sw a0, __curbrk
|
||||
move v0, zero
|
||||
jr ra
|
||||
.end __brk
|
||||
PSEUDO_END(__brk)
|
||||
|
||||
weak_alias (__brk, brk)
|
||||
|
|
|
@ -26,7 +26,7 @@ SYSCALL__ (fork, 0)
|
|||
move v0, zero
|
||||
parent:
|
||||
ret
|
||||
.end __fork
|
||||
libc_hidden_def (__fork)
|
||||
PSEUDO_END(__fork)
|
||||
|
||||
libc_hidden_def (__fork)
|
||||
weak_alias (__fork, fork)
|
||||
|
|
|
@ -27,7 +27,7 @@ SYSCALL__ (pipe, 1)
|
|||
/* Go out with a clean status. */
|
||||
move v0, zero
|
||||
j ra
|
||||
.end __pipe
|
||||
PSEUDO_END(__pipe)
|
||||
|
||||
libc_hidden_def (__pipe)
|
||||
weak_alias (__pipe, pipe)
|
||||
|
|
Loading…
Reference in New Issue