musl/src/process/vfork.c

9 lines
139 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <unistd.h>
#include "syscall.h"
pid_t vfork(void)
{
/* vfork syscall cannot be made from C code */
return syscall(SYS_fork);
2011-02-12 00:22:29 -05:00
}