blob: 73a41dc296e02443acd81102e097348db6827c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <errno.h>
#include <features.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <unistd.h>
libc_hidden_proto(vfork)
pid_t
vfork (void)
{
return __fork ();
}
libc_hidden_def(vfork)
|