shithub: riscv

ref: 01229e5b52c4532702b891d3bee7e9296e2ad1c2
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);
}