shithub: riscv

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

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

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