global cleanup to use the new syscall interface
[musl] / src / process / vfork.c
1 #include <unistd.h>
2 #include "syscall.h"
3
4 pid_t vfork(void)
5 {
6         /* vfork syscall cannot be made from C code */
7         return syscall(SYS_fork);
8 }