bionic/libc/arch-x86_64/syscalls/statfs64.S

20 lines
372 B
ArmAsm
Raw Normal View History

/* Generated by gensyscalls.py. Do not edit. */
#include <private/bionic_asm.h>
ENTRY(statfs64)
movl $__NR_statfs, %eax
syscall
cmpq $-MAX_ERRNO, %rax
jb 1f
negl %eax
movl %eax, %edi
call __set_errno
orq $-1, %rax
1:
ret
END(statfs64)
.globl _C_LABEL(statfs)
.equ _C_LABEL(statfs), _C_LABEL(statfs64)