e35fd48a83
This fixes the build after the -Bsymbolic change.
Bug: 16853291
Change-Id: I989c9fec3c32e0289ea257a3bd2b7fd2709b6ce2
(cherry picked from commit bc9f9f25bf
)
17 lines
317 B
ArmAsm
17 lines
317 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
.hidden __set_errno
|
|
|
|
ENTRY(inotify_init1)
|
|
movl $__NR_inotify_init1, %eax
|
|
syscall
|
|
cmpq $-MAX_ERRNO, %rax
|
|
jb 1f
|
|
negl %eax
|
|
movl %eax, %edi
|
|
call __set_errno
|
|
1:
|
|
ret
|
|
END(inotify_init1)
|