shithub: riscv

ref: 35df6c32a2c75bc15deab6577ac9cc554859a4bb
dir: /sys/src/libc/9sys/fork.c/

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

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