shithub: riscv

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

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

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