shithub: riscv

ref: 7ab86494986671bf38464435f57fb6f925ce8632
dir: /sys/src/libc/9sys/fork.c/

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

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