Dalvik.h revision c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef
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 ALOGW(...) printf("W/" __VA_ARGS__)
12#define ALOGE(...) printf("E/" __VA_ARGS__)
13
14inline void dvmAbort(void) {
15    exit(1);
16}
17
18#endif  // DALVIK_H_
19