summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-08-10 19:37:52 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-08-10 19:37:52 +0200
commitb65a90235e7d4fc3a2dbf68bb73ac323a88f1abc (patch)
tree1950a89df8fa02172f5e7f269edecbc556e22a8e /common.h
parentam 236b3eb6: am e67104a6: Merge "Use CPPFLAGS instead of CFLAGS." (diff)
parentam 7c511184: Merge "updater: Clean up char* with std::string." (diff)
downloadandroid_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.tar
android_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.tar.gz
android_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.tar.bz2
android_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.tar.lz
android_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.tar.xz
android_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.tar.zst
android_bootable_recovery-b65a90235e7d4fc3a2dbf68bb73ac323a88f1abc.zip
Diffstat (limited to 'common.h')
-rw-r--r--common.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/common.h b/common.h
index b818ceb84..de8b409fd 100644
--- a/common.h
+++ b/common.h
@@ -21,10 +21,6 @@
#include <stdio.h>
#include <stdarg.h>
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#define LOGE(...) ui_print("E:" __VA_ARGS__)
#define LOGW(...) fprintf(stdout, "W:" __VA_ARGS__)
#define LOGI(...) fprintf(stdout, "I:" __VA_ARGS__)
@@ -50,8 +46,4 @@ void ui_print(const char* format, ...);
bool is_ro_debuggable();
-#ifdef __cplusplus
-}
-#endif
-
#endif // RECOVERY_COMMON_H