summaryrefslogtreecommitdiffstats
path: root/libc/arch-x86_64/syscalls/statfs64.S
diff options
context:
space:
mode:
Diffstat (limited to 'libc/arch-x86_64/syscalls/statfs64.S')
-rw-r--r--libc/arch-x86_64/syscalls/statfs64.S4
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/arch-x86_64/syscalls/statfs64.S b/libc/arch-x86_64/syscalls/statfs64.S
index 26c3d53..16f6bdd 100644
--- a/libc/arch-x86_64/syscalls/statfs64.S
+++ b/libc/arch-x86_64/syscalls/statfs64.S
@@ -2,8 +2,6 @@
#include <private/bionic_asm.h>
- .hidden __set_errno
-
ENTRY(statfs64)
movl $__NR_statfs, %eax
syscall
@@ -11,7 +9,7 @@ ENTRY(statfs64)
jb 1f
negl %eax
movl %eax, %edi
- call __set_errno
+ call __set_errno_internal
1:
ret
END(statfs64)