summaryrefslogtreecommitdiffstats
path: root/minadbd/transport.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/transport.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/transport.h')
-rw-r--r--minadbd/transport.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/minadbd/transport.h b/minadbd/transport.h
index 992e05285..c1b8ff34f 100644
--- a/minadbd/transport.h
+++ b/minadbd/transport.h
@@ -17,10 +17,19 @@
#ifndef __TRANSPORT_H
#define __TRANSPORT_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* convenience wrappers around read/write that will retry on
** EINTR and/or short read/write. Returns 0 on success, -1
** on error or EOF.
*/
int readx(int fd, void *ptr, size_t len);
int writex(int fd, const void *ptr, size_t len);
+
+#ifdef __cplusplus
+}
+#endif
+
#endif /* __TRANSPORT_H */