summaryrefslogtreecommitdiff
path: root/emu/Linux/segflush-386.c
blob: 18c940d2ff36ca2ae97d8984ac12f05c96489444 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/types.h>
#include <sys/syscall.h>

#include "dat.h"

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