* sysdeps/unix/mips/fork.S: add PSEUDO_END.
authorAndreas Jaeger <aj@suse.de>
Sat, 11 Jan 2003 15:26:35 +0000 (15:26 +0000)
committerAndreas Jaeger <aj@suse.de>
Sat, 11 Jan 2003 15:26:35 +0000 (15:26 +0000)
* sysdeps/unix/mips/brk.S: Likewise.
* sysdeps/unix/mips/pipe.S: Likewise.

sysdeps/unix/mips/brk.S
sysdeps/unix/mips/fork.S
sysdeps/unix/mips/pipe.S

index 9674571..f094cda 100644 (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)
index 1850c17..a7848ac 100644 (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)
index 1aebb9b..ee7b76d 100644 (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)