shithub: riscv

ref: 762e98d47e8d812f0dbe4b64ef2a73357bdebeee
dir: /sys/src/libc/9sys/fork.c/

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

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