fix nl_langinfo table for LC_TIME era-related items
[musl] / src / process / vfork.c
1 #define _GNU_SOURCE
2 #include <unistd.h>
3 #include <signal.h>
4 #include "syscall.h"
5 #include "libc.h"
6
7 pid_t __vfork(void)
8 {
9         /* vfork syscall cannot be made from C code */
10 #ifdef SYS_fork
11         return syscall(SYS_fork);
12 #else
13         return syscall(SYS_clone, SIGCHLD, 0);
14 #endif
15 }
16
17 weak_alias(__vfork, vfork);