shithub: riscv

ref: d31b10c42e29ba0befe9290164ec587d2a3ebb1e
dir: /sys/src/libc/9sys/fork.c/

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

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