commit | 10e418d3c89ec404fbf959c1ef77a720a42a66ed | [log] [tgz] |
---|---|---|
author | Doug Zongker <dougz@android.com> | Fri Oct 28 10:33:05 2011 -0700 |
committer | Doug Zongker <dougz@android.com> | Fri Oct 28 10:33:05 2011 -0700 |
tree | 0c429bcc8f4a1935f3be97d87ebdc2f4434ee887 | |
parent | d0181b8fcdac761afec252151a8bfda116916e96 [diff] [blame] |
turn recovery into a C++ binary Change-Id: I68a67a4c8edec9a74463b3d4766005ce27b51316
diff --git a/roots.h b/roots.h index cf59bfd..8abe18f 100644 --- a/roots.h +++ b/roots.h
@@ -19,6 +19,10 @@ #include "common.h" +#ifdef __cplusplus +extern "C" { +#endif + // Load and parse volume data from /etc/recovery.fstab. void load_volume_table(); @@ -38,4 +42,8 @@ // it is mounted. int format_volume(const char* volume); +#ifdef __cplusplus +} +#endif + #endif // RECOVERY_ROOTS_H_