shithub: riscv

ref: 1c0427e6dd9da96e6e20410f205a95b30c2ae770
dir: /sys/src/ape/lib/9/segflush.c/

View raw version
#include <lib9.h>

extern	int	_SEGFLUSH(void*, unsigned long);

int
segflush(void *va, unsigned long len)
{
	return _SEGFLUSH(va, len);
}