fxlibc/src/unistd/fork_execve.S

13 lines
149 B
ArmAsm
Raw Normal View History

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