git: 9front

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