shithub: riscv

ref: 27fc79b04bee837f513f8ac92c3e50ae76c27abe
dir: /sys/src/libc/9sys/fork.c/

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

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