am 958235bd: Merge "libsparse: allow including from C++"

* commit '958235bdc1d9d421cff24a8af415959ec5282c46':
  libsparse: allow including from C++
This commit is contained in:
Colin Cross 2014-04-18 21:27:39 +00:00 committed by Android Git Automerger
commit 0cb82da254

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