blob: f6f891b2975666ffe73882d8158cddd8803f223a [file] [log] [blame]
Elliott Hughesf64b8ea2014-02-03 16:20:46 -08001/* Generated by gensyscalls.py. Do not edit. */
2
3#include <private/bionic_asm.h>
4
5ENTRY(fallocate)
6 movq %rcx, %r10
7 movl $__NR_fallocate, %eax
8 syscall
9 cmpq $-MAX_ERRNO, %rax
10 jb 1f
11 negl %eax
12 movl %eax, %edi
Elliott Hughes011e1112014-09-08 15:25:01 -070013 call __set_errno_internal
Elliott Hughesf64b8ea2014-02-03 16:20:46 -0800141:
15 ret
16END(fallocate)
17
Christopher Ferrisfa5faa02015-03-24 16:50:46 -070018ALIAS_SYMBOL(fallocate64, fallocate)