shithub: riscv

ref: 4aeefba6811e57afe04a909fe147a29bb419d06b
dir: /sys/src/libc/9sys/fork.c/

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

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