blob: 3a6ee7a03798cc58abbe410999779d6a213ff271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __MMUHACK__
#define __MMUHACK__
#ifdef __cplusplus
extern "C" {
#endif
extern int mmuhack(void);
extern int mmuunhack(void);
#ifdef __cplusplus
}
#endif
#endif /* __MMUHACK__ */
|