shithub: riscv

ref: 4e8494aad79a124f2b15ede9e7873fed46e1bb0a
dir: /sys/src/libc/9sys/fork.c/

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

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