2 #include "tests/malloc.h"
8 # if !defined(VGO_darwin) && !defined(VGO_solaris)
9 // Because Memcheck marks any slop as inaccessible, it doesn't round up
10 // sizes for malloc_usable_size().
13 // XXX: would be better to have a HAVE_MALLOC_USABLE_SIZE variable here
14 assert(99 == malloc_usable_size(x
));
15 assert( 0 == malloc_usable_size(NULL
));
16 assert( 0 == malloc_usable_size((void*)0xdeadbeef));