git: 9front

ref: 3b2e0693b7e4db8f9fda2ff15fbfcba6f655371b
dir: /sys/src/libc/9sys/fork.c/

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

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