From fe2c1a231e3893dc3d7ac314e11b04a18c6948e7 Mon Sep 17 00:00:00 2001 From: "J. Richard Barnette" Date: Thu, 24 Oct 2013 16:04:12 -0700 Subject: Allow to be usable in C++ code. BUG=None TEST=build update_engine with a change that uses the header. BRANCH=none Change-Id: Icbfe9be615a4f7f4078a0a0cde64324908dea2a7 Reviewed-on: https://chromium-review.googlesource.com/174428 Commit-Queue: Richard Barnette Tested-by: Richard Barnette Reviewed-by: Bill Richardson --- host/include/crossystem.h | 8 ++++++++ 1 file changed, 8 insertions(+) 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_ */ -- cgit v1.2.1