diff options
author | Tao Bao <tbao@google.com> | 2015-08-10 19:29:54 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-08-10 19:29:54 +0200 |
commit | 7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace (patch) | |
tree | f06f32b0db7a162ec7c33170d1f4b87454762962 /common.h | |
parent | am e67104a6: Merge "Use CPPFLAGS instead of CFLAGS." (diff) | |
parent | Merge "updater: Clean up char* with std::string." (diff) | |
download | android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.tar android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.tar.gz android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.tar.bz2 android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.tar.lz android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.tar.xz android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.tar.zst android_bootable_recovery-7f89389a0b55d13ee1c9026c33f17dc1cc9c7ace.zip |
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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 |