fxlibc/src/unistd/open.S

13 lines
121 B
ArmAsm

#include <asm/unistd_32.h>
.text
.global _open
.type _open, @function
.align 2
_open:
trapa #__NR_open
rts
nop
.end