103ccde8fe
No non-comment changes to the .S files. Change-Id: Iafcfd004c3ea92b64268f80ab16df615b97cefac
21 lines
404 B
ArmAsm
21 lines
404 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <asm/unistd.h>
|
|
#include <linux/err.h>
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(lseek)
|
|
movl $__NR_lseek, %eax
|
|
syscall
|
|
cmpq $-MAX_ERRNO, %rax
|
|
jb 1f
|
|
negl %eax
|
|
movl %eax, %edi
|
|
call __set_errno
|
|
orq $-1, %rax
|
|
1:
|
|
ret
|
|
END(lseek)
|
|
|
|
.globl _C_LABEL(lseek64)
|
|
.equ _C_LABEL(lseek64), _C_LABEL(lseek)
|