OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / dalvik / vm / alloc / TEST / HeapBitmapTest / include / Dalvik.h
1 #ifndef DALVIK_H_
2 #define DALVIK_H_
3
4 #include <stdio.h>
5 #include <stdbool.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <unistd.h>
9 #include <limits.h>
10
11 #define LOGW(...) printf("W/" __VA_ARGS__)
12 #define LOGE(...) printf("E/" __VA_ARGS__)
13
14 inline void dvmAbort(void) {
15     exit(1);
16 }
17
18 #endif  // DALVIK_H_