summaryrefslogtreecommitdiffstats
path: root/minadbd/sysdeps.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/sysdeps.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 'minadbd/sysdeps.h')
-rw-r--r--minadbd/sysdeps.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/minadbd/sysdeps.h b/minadbd/sysdeps.h
index 800ddb753..3edaef472 100644
--- a/minadbd/sysdeps.h
+++ b/minadbd/sysdeps.h
@@ -36,6 +36,10 @@
#include <errno.h>
#include <ctype.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#define OS_PATH_SEPARATOR '\\'
#define OS_PATH_SEPARATOR_STR "\\"
@@ -254,6 +258,10 @@ static __inline__ int adb_is_absolute_host_path( const char* path )
return isalpha(path[0]) && path[1] == ':' && path[2] == '\\';
}
+#ifdef __cplusplus
+}
+#endif
+
#else /* !_WIN32 a.k.a. Unix */
#include "fdevent.h"
@@ -491,4 +499,8 @@ static __inline__ int adb_is_absolute_host_path( const char* path )
#endif /* !_WIN32 */
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _ADB_SYSDEPS_H */