shithub: riscv

ref: 48352be82574e39a54e44b5ed38d407dcb66a0bb
dir: /sys/src/libc/9sys/fork.c/

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

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