shithub: riscv

ref: 0a067833bb46259232035b1d894e3b21567c4ee8
dir: /sys/src/libc/9sys/fork.c/

View raw version
#include <u.h>
#include <libc.h>

int
fork(void)
{
	return rfork(RFPROC|RFFDG|RFREND);
}