shithub: riscv

ref: 4e00cf6b1798fc95b3ccad8cb66a3e80c96b2786
dir: /sys/src/ape/lib/9/rfork.c/

View raw version
#include <lib9.h>

extern	int	_RFORK(int);

int
rfork(int flags)
{
	return _RFORK(flags);
}