shithub: riscv

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

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

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