diff options
author | Andreas Jaeger <aj@suse.de> | 2003-01-11 15:26:35 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-01-11 15:26:35 +0000 |
commit | b257b9b53236725adff6cdebee188d08f33f9711 (patch) | |
tree | d896fa9709ec139e8c827def0b1e40dc0d4b53bc /sysdeps/unix/mips | |
parent | 94e21bc57f0dc5caecdefdee320d069ce29b563f (diff) | |
download | glibc-b257b9b53236725adff6cdebee188d08f33f9711.tar.gz glibc-b257b9b53236725adff6cdebee188d08f33f9711.tar.xz glibc-b257b9b53236725adff6cdebee188d08f33f9711.zip |
* sysdeps/unix/mips/fork.S: add PSEUDO_END.
* sysdeps/unix/mips/brk.S: Likewise. * sysdeps/unix/mips/pipe.S: Likewise.
Diffstat (limited to 'sysdeps/unix/mips')
-rw-r--r-- | sysdeps/unix/mips/brk.S | 2 | ||||
-rw-r--r-- | sysdeps/unix/mips/fork.S | 4 | ||||
-rw-r--r-- | sysdeps/unix/mips/pipe.S | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/mips/brk.S b/sysdeps/unix/mips/brk.S index 9674571d80..f094cda19b 100644 --- a/sysdeps/unix/mips/brk.S +++ b/sysdeps/unix/mips/brk.S @@ -42,6 +42,6 @@ SYSCALL__(brk, 1) sw a0, __curbrk move v0, zero jr ra - .end __brk +PSEUDO_END(__brk) weak_alias (__brk, brk) diff --git a/sysdeps/unix/mips/fork.S b/sysdeps/unix/mips/fork.S index 1850c17f11..a7848acb6b 100644 --- a/sysdeps/unix/mips/fork.S +++ b/sysdeps/unix/mips/fork.S @@ -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) diff --git a/sysdeps/unix/mips/pipe.S b/sysdeps/unix/mips/pipe.S index 1aebb9b81b..ee7b76d635 100644 --- a/sysdeps/unix/mips/pipe.S +++ b/sysdeps/unix/mips/pipe.S @@ -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) |