git: 9front

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

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

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