shithub: riscv

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

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

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