* 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:
Andreas Jaeger 2003-01-11 15:26:35 +00:00
parent 94e21bc57f
commit b257b9b532
3 changed files with 4 additions and 4 deletions

View File

@ -42,6 +42,6 @@ SYSCALL__(brk, 1)
sw a0, __curbrk
move v0, zero
jr ra
.end __brk
PSEUDO_END(__brk)
weak_alias (__brk, brk)

View File

@ -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)

View File

@ -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)