shithub: riscv

ref: 6dc60ec3a95e88d30b487d13271b042c96eb9532
dir: /sys/src/libc/9sys/fork.c/

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

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