shithub: riscv

ref: ce00c68059d50ccaeb87fb85b03d60c5d0889456
dir: /sys/src/libc/9sys/fork.c/

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

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