• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
dvmAbort(void)14 inline void dvmAbort(void) {
15     exit(1);
16 }
17 
18 #endif  // DALVIK_H_
19