shithub: riscv

ref: 72e4d850a4c2b334b3442dd39aa973650e5d5ba4
dir: /sys/src/libc/9sys/fork.c/

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

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