shithub: riscv

ref: 065d601916d74f1b5e95d114f7fd8b8bd1747184
dir: /sys/src/libc/9sys/fork.c/

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

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