summaryrefslogtreecommitdiff
path: root/emu/NetBSD/segflush-386.c
blob: cdf0496b08eb307e0911f5a7b2e968b77a87c830 (plain)
1
2
3
4
5
6
7
8
9
#include "dat.h"

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