summaryrefslogtreecommitdiffstats
path: root/minadbd/utils.h
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-18 19:21:54 +0100
committerDan Albert <danalbert@google.com>2015-02-18 19:21:54 +0100
commitd808d2194f7a71309545bfcf111e874fb97bfd6b (patch)
tree0e2117efa62822997d9ecfd6a7fbaed380b17547 /minadbd/utils.h
parentMerge "Fix Droid and animation color in recovery mode" (diff)
downloadandroid_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar
android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.gz
android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.bz2
android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.lz
android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.xz
android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.zst
android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.zip
Diffstat (limited to '')
-rw-r--r--minadbd/utils.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/minadbd/utils.h b/minadbd/utils.h
index f70ecd24d..e833820ab 100644
--- a/minadbd/utils.h
+++ b/minadbd/utils.h
@@ -16,6 +16,10 @@
#ifndef _ADB_UTILS_H
#define _ADB_UTILS_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* bounded buffer functions */
/* all these functions are used to append data to a bounded buffer.
@@ -65,4 +69,8 @@ char* buff_add (char* buff, char* buffEnd, const char* format, ... );
#define BUFF_DECL(_buff,_cursor,_end,_size) \
char _buff[_size], *_cursor=_buff, *_end = _cursor + (_size)
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _ADB_UTILS_H */