shithub: riscv

ref: 33636932054f74c7a922a9713a9229d6d5fc7f38
dir: /sys/src/libc/9sys/fork.c/

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

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