sdm: Remove libsdmutils dependency on Android.

- Make libsdmutils Android independent.
- Rename debug_android.cpp to debug.cpp.
- Fix compilation errors observed in linux environment.

Change-Id: I19e275939b27f2f47949c5e17559eeadb09bdccf
This commit is contained in:
Dileep Marchya
2015-05-21 13:29:05 -07:00
committed by Gerrit - the friendly Code Review server
parent ec01c56d96
commit e2a590859a
15 changed files with 86 additions and 75 deletions

View File

@@ -26,6 +26,11 @@
#define __CONSTANTS_H__
#include <stdlib.h>
#include <inttypes.h>
#ifndef PRIu64
#define PRIu64 "llu"
#endif
#define INT(exp) static_cast<int>(exp)
#define FLOAT(exp) static_cast<float>(exp)