git: 9front

ref: 13fca1bb07b6e2a6ef9059b8f8ae14e69d288fb7
dir: /sys/src/libc/9sys/fork.c/

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

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