Merge "Fix declaration of malloc_usable_size()"

This commit is contained in:
Elliott Hughes
2013-06-05 01:58:26 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -190,7 +190,7 @@ extern "C" struct mallinfo mallinfo() {
return dlmallinfo();
}
extern "C" size_t malloc_usable_size(void* mem) {
extern "C" size_t malloc_usable_size(const void* mem) {
return dlmalloc_usable_size(mem);
}