bionic/libc/arch-x86_64/syscalls/fallocate.S
Elliott Hughes 986f906710 Fix build by avoiding the _C_LABEL macro.
Change-Id: Ide367c2b65071388bd95fbc81a4ed6ae94aec4e4
2014-02-18 16:42:36 -08:00

21 lines
381 B
ArmAsm

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