shithub: riscv

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

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

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