shithub: riscv

ref: 49cd794fbdd661e8035eee41d053fedc30a5e165
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);
}