1 /*
2   dummy cacheflush function (does nothing)
3 
4   Copyright (C) 2007 Free Software Foundation, Inc.
5 
6   This file is part of Gforth.
7 
8   Gforth is free software; you can redistribute it and/or
9   modify it under the terms of the GNU General Public License
10   as published by the Free Software Foundation, either version 3
11   of the License, or (at your option) any later version.
12 
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17 
18   You should have received a copy of the GNU General Public License
19   along with this program; if not, see http://www.gnu.org/licenses/.
20 */
21 
22 /* if you know how to do cache flushing for your platform, put it in a
23    file cacheflush.c here and call configure like this:
24    ./configure arm_cacheflush=arch/arm/cacheflush
25  */
26 #include <stdlib.h>
cacheflush(void * p,size_t size)27 void cacheflush(void *p, size_t size)
28 {
29 }
30