fxlibc/src/unistd/wait.S

13 lines
121 B
ArmAsm
Raw Normal View History

2020-09-17 19:27:01 +02:00
#include <asm/unistd_32.h>
.text
.global _wait
.type _wait, @function
.align 2
_wait:
trapa #__NR_wait
rts
nop
.end