Switch art over to the new bionic dlmalloc 2.8.5 callback
Change-Id: I1314e87a51553fd358dbf9c44f804a7eb2de3a7d
diff --git a/src/dlmalloc.h b/src/dlmalloc.h
index cb09308..e696f6e 100644
--- a/src/dlmalloc.h
+++ b/src/dlmalloc.h
@@ -31,4 +31,16 @@
#include "dlmalloc/malloc.h"
#endif
+#include <stddef.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void dlmalloc_inspect_all(void(*handler)(void*, void *, size_t, void*), void* arg);
+
+#ifdef __cplusplus
+}; /* end of extern "C" */
+#endif
+
#endif // ART_SRC_DLMALLOC_H_