shithub: riscv

ref: 88b894434d3c8e037418490459d8eae40e3addaf
dir: /sys/src/libc/9sys/fork.c/

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

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