summaryrefslogtreecommitdiff
path: root/vm/alloc/TEST/HeapBitmapTest/include/Dalvik.h
blob: 4c9f608e2ffc334a3262d5b31ad35ac61663a98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DALVIK_H_
#define DALVIK_H_

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <limits.h>

#define LOGW(...) printf("W/" __VA_ARGS__)
#define LOGE(...) printf("E/" __VA_ARGS__)

inline void dvmAbort(void) {
    exit(1);
}

#endif  // DALVIK_H_