shithub: riscv

ref: 469dfca25ff0fac154e8f4357a1bf5541e79b148
dir: /sys/src/libc/9sys/fork.c/

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

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