shithub: riscv

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

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

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