shithub: riscv

ref: 548f7f971f5938c1b54481e0542d5b19e0fe37de
dir: /sys/src/libc/9sys/fork.c/

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

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