shithub: front

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