summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--host/include/crossystem.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/host/include/crossystem.h b/host/include/crossystem.h
index 71acc841..c116b0c2 100644
--- a/host/include/crossystem.h
+++ b/host/include/crossystem.h
@@ -6,6 +6,10 @@
#ifndef VBOOT_REFERENCE_CROSSYSTEM_H_
#define VBOOT_REFERENCE_CROSSYSTEM_H_
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* Reads a system property integer.
*
* Returns the property value, or -1 if error. */
@@ -28,4 +32,8 @@ int VbSetSystemPropertyInt(const char* name, int value);
* Returns 0 if success, -1 if error. */
int VbSetSystemPropertyString(const char* name, const char* value);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* VBOOT_REFERENCE__CROSSYSTEM_H_ */