shithub: riscv

ref: 57ed5cc3f033446311b32181e72128326d80b9ef
dir: /sys/src/libc/9sys/fork.c/

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

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