shithub: riscv

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

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

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