mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 12:03:41 +00:00
12 lines
181 B
ArmAsm
12 lines
181 B
ArmAsm
|
#include "libc/macros.h"
|
||
|
.text.unlikely
|
||
|
|
||
|
ebadf: .leafprologue
|
||
|
.profilable
|
||
|
mov EBADF(%rip),%eax
|
||
|
mov %eax,errno(%rip)
|
||
|
push $-1
|
||
|
pop %rax
|
||
|
.leafepilogue
|
||
|
.endfn ebadf,globl,hidden
|