blob: 4c9f608e2ffc334a3262d5b31ad35ac61663a98a [file] [log] [blame]
#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_