summaryrefslogtreecommitdiff
path: root/emu/NetBSD/segflush-power.c
blob: 845d74f68d66dee0a218ebe9ee70b9c2f9f4c0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/types.h>
#include <machine/cpu.h>

#include "dat.h"


int
segflush(void *a, ulong n)
{
	__syncicache(a, n);
	return 0;
}