diff options
Diffstat (limited to 'libc/sysdeps/linux/arc')
-rw-r--r-- | libc/sysdeps/linux/arc/__syscall_error.c | 2 | ||||
-rw-r--r-- | libc/sysdeps/linux/arc/bits/syscalls.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/arc/__syscall_error.c b/libc/sysdeps/linux/arc/__syscall_error.c index 962d743e4..7f30485a8 100644 --- a/libc/sysdeps/linux/arc/__syscall_error.c +++ b/libc/sysdeps/linux/arc/__syscall_error.c @@ -8,7 +8,7 @@ #include <errno.h> #include <sys/syscall.h> -int __syscall_error(int err_no) +long __syscall_error(int err_no) { __set_errno(-err_no); return -1; diff --git a/libc/sysdeps/linux/arc/bits/syscalls.h b/libc/sysdeps/linux/arc/bits/syscalls.h index 248ef7844..c858d788b 100644 --- a/libc/sysdeps/linux/arc/bits/syscalls.h +++ b/libc/sysdeps/linux/arc/bits/syscalls.h @@ -34,7 +34,7 @@ /* ldso doesn't have real errno */ #define ERRNO_ERRANDS(_sys_result) #else /* !IS_IN_rtld */ -extern int __syscall_error (int); +extern long __syscall_error (int); #ifndef IS_IN_libc /* Inter-libc callers use PLT */ #define CALL_ERRNO_SETTER "bl __syscall_error@plt \n\t" |