shithub: riscv

ref: 4040ea7a5eda976098131794e8df3b162cafa8f4
dir: /sys/src/libc/9sys/fork.c/

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

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