blob: 89492d55739c5cf6058ca538fd5ac30f5d0ee306 (
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 ALOGW(...) printf("W/" __VA_ARGS__)
#define ALOGE(...) printf("E/" __VA_ARGS__)
inline void dvmAbort(void) {
exit(1);
}
#endif // DALVIK_H_
|