shithub: riscv

ref: 01eb04060b0de65eca044566381e214fab99fea3
dir: /sys/src/libc/9sys/fork.c/

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

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