summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/9/segflush.c
blob: 44259e6897118be980bc5554a44604057c549423 (plain)
1
2
3
4
5
6
7
8
9
#include <lib9.h>

extern	int	_SEGFLUSH(void*, unsigned long);

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