Merge "libsparse: allow including from C++"

This commit is contained in:
Colin Cross 2014-04-18 21:22:54 +00:00 committed by Gerrit Code Review
commit 958235bdc1
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