shithub: riscv

ref: 5302e88796f0ad7fb2490e68b72ef6cd417dfb03
dir: /sys/src/libc/9sys/fork.c/

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

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