shithub: riscv

ref: 0f9666ae162f7c330850fa513e8ed3bd5fd995df
dir: /sys/src/libc/9sys/fork.c/

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

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