diff options
| author | Elliott Hughes <enh@google.com> | 2014-04-08 17:14:01 -0700 |
|---|---|---|
| committer | Elliott Hughes <enh@google.com> | 2014-04-08 17:16:13 -0700 |
| commit | 9f525644df99cb2f7f81a23ca23840f0a8f82275 (patch) | |
| tree | edfe771f84024370aba4988e016534e5c535984e /libc/arch-mips/syscalls | |
| parent | ac70d2e1fe71f98232942237c2b463ea3adbf662 (diff) | |
| download | bionic-9f525644df99cb2f7f81a23ca23840f0a8f82275.zip bionic-9f525644df99cb2f7f81a23ca23840f0a8f82275.tar.gz bionic-9f525644df99cb2f7f81a23ca23840f0a8f82275.tar.bz2 | |
Implement _Exit(3).
Change-Id: Ida6ac844cc87d38c9645b197dd8188bb73e27dbe
Diffstat (limited to 'libc/arch-mips/syscalls')
| -rw-r--r-- | libc/arch-mips/syscalls/_exit.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/arch-mips/syscalls/_exit.S b/libc/arch-mips/syscalls/_exit.S index 5a0877d..f546b66 100644 --- a/libc/arch-mips/syscalls/_exit.S +++ b/libc/arch-mips/syscalls/_exit.S @@ -17,3 +17,6 @@ ENTRY(_exit) nop .set reorder END(_exit) + + .globl _Exit + .equ _Exit, _exit |
