aboutsummaryrefslogtreecommitdiff
path: root/emu/FreeRTOS/segflush-riscv64.c
blob: bdc3cb9d7e70f76c99273121a57048273db44549 (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;
}