shithub: riscv

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