platform_bionic/libc/arch-x86_64/syscalls/pwrite64.S

19 lines
341 B
ArmAsm
Raw Normal View History

/* Generated by gensyscalls.py. Do not edit. */
#include <private/bionic_asm.h>
ENTRY(pwrite64)
movq %rcx, %r10
movl $__NR_pwrite64, %eax
syscall
cmpq $-MAX_ERRNO, %rax
jb 1f
negl %eax
movl %eax, %edi
call __set_errno_internal
1:
ret
END(pwrite64)
ALIAS_SYMBOL(pwrite, pwrite64)