shithub: riscv

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

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

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