implement ffsl and ffsll functions
[musl] / src / process / vfork.c
index 16d07ea..ac95465 100644 (file)
@@ -1,11 +1,17 @@
+#define _GNU_SOURCE
 #include <unistd.h>
+#include <signal.h>
 #include "syscall.h"
 #include "libc.h"
 
 pid_t __vfork(void)
 {
        /* vfork syscall cannot be made from C code */
+#ifdef SYS_fork
        return syscall(SYS_fork);
+#else
+       return syscall(SYS_clone, SIGCHLD, 0);
+#endif
 }
 
 weak_alias(__vfork, vfork);