shithub: riscv

ref: 09ed7a6e568022e313e5e5d92808ef724b874adb
dir: /sys/src/libc/9sys/fork.c/

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

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