Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b0cb721f authored by Colin Cross's avatar Colin Cross Committed by Android Git Automerger
Browse files

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

* commit '37d39eba':
  libsparse: allow including from C++
parents e29590b0 37d39eba
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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