shithub: riscv

ref: 015180f99be4553dc4851f63edff04d0fc16a66a
dir: /sys/src/libc/9sys/fork.c/

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

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