shithub: riscv

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

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

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