Files
semi-libc/src/process/vfork.c
T

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);
}