]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* 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 9674571d80b4f2b11571a07c4adaf04d3250abbf..f094cda19bf4057006bbc7c47d6027be96e2b343 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 1850c17f1123ef8caac56d5d58125f0ad1807869..a7848acb6bf20aa04335eefb4169afd49d428637 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 1aebb9b81b72cb9cd3931551e01614f41f5290d2..ee7b76d635b5e2a8da4ebafb32b069def7c0b6bd 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)