blob: 694265b7a8386701702dc687ccf0e0f53816fd96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <features.h>
#include <asm/unistd.h>
.text
.globl _vfork
.globl __libc_vfork
.type _vfork,STT_FUNC;
.align 4
__libc_vfork:
_vfork:
p0 = __NR_vfork;
excpt 0;
rts;
libc_hidden_def(_vfork)
|