am 37d39eba: am 0cb82da2: am 958235bd: Merge "libsparse: allow including from C++"

* commit '37d39eba0b3da124be747dd6a014332817135264':
  libsparse: allow including from C++
This commit is contained in:
Colin Cross 2014-04-18 21:33:47 +00:00 committed by Android Git Automerger
commit b0cb721fb3
1 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,10 @@
#include <stdbool.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
struct sparse_file;
/**
@ -273,4 +277,8 @@ void sparse_file_verbose(struct sparse_file *s);
*/
extern void (*sparse_print_verbose)(const char *fmt, ...);
#ifdef __cplusplus
}
#endif
#endif