summaryrefslogtreecommitdiff
path: root/bootloader.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-08-05 15:20:27 -0700
committerTao Bao <tbao@google.com>2015-08-06 13:05:00 -0700
commite6aa3326c1dbebac95eebc320d2c419f0ae9f9b9 (patch)
tree8fc195887d4dfd4204463078632a904cc4912736 /bootloader.h
parent27c1ab2095f25253d0920eb6afe7cd2791a708dc (diff)
updater: Clean up char* with std::string.
So we can remove a few free()s. And also replace a few pointers with references. Change-Id: I4b6332216704f4f9ea4a044b8d4bb7aa42a7ef26
Diffstat (limited to 'bootloader.h')
-rw-r--r--bootloader.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/bootloader.h b/bootloader.h
index c2895dd9..4e9fb0a0 100644
--- a/bootloader.h
+++ b/bootloader.h
@@ -17,10 +17,6 @@
#ifndef _RECOVERY_BOOTLOADER_H
#define _RECOVERY_BOOTLOADER_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
/* Bootloader Message
*
* This structure describes the content of a block in flash
@@ -64,8 +60,4 @@ struct bootloader_message {
int get_bootloader_message(struct bootloader_message *out);
int set_bootloader_message(const struct bootloader_message *in);
-#ifdef __cplusplus
-}
-#endif
-
#endif