mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
9 lines
141 B
C
9 lines
141 B
C
|
#include <unistd.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
pid_t vfork(void)
|
||
|
{
|
||
|
/* vfork syscall cannot be made from C code */
|
||
|
return syscall0(__NR_fork);
|
||
|
}
|