diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-12 02:43:45 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-08-12 02:43:45 +0000 |
commit | 50dcba0bb24c6c57397dab0ee4a083ee2c8266aa (patch) | |
tree | 39b45cc38150687420b955cee4a2038452e28733 /libc/sysdeps/linux/i386/mmap64.S | |
parent | 3e618254fd7d842f63b19b89a7b9cee0ec76637b (diff) | |
download | uClibc-alpine-50dcba0bb24c6c57397dab0ee4a083ee2c8266aa.tar.bz2 uClibc-alpine-50dcba0bb24c6c57397dab0ee4a083ee2c8266aa.tar.xz |
Bring in latest from trunk.
Diffstat (limited to 'libc/sysdeps/linux/i386/mmap64.S')
-rw-r--r-- | libc/sysdeps/linux/i386/mmap64.S | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/i386/mmap64.S b/libc/sysdeps/linux/i386/mmap64.S index 34cee1640..5c89c983b 100644 --- a/libc/sysdeps/linux/i386/mmap64.S +++ b/libc/sysdeps/linux/i386/mmap64.S @@ -76,7 +76,7 @@ mmap64: /* If 0 > %eax > -4096 there was an error. */ cmpl $-4095,%eax - ja __error + ja __syscall_error /* Successful; return the syscall's value. */ ret @@ -89,9 +89,6 @@ L_einval: movl $-EINVAL, %eax jmp __error -__error: - jmp __syscall_error - .size mmap64,.-mmap64 #endif |