2 #include "tests/malloc.h"
8 # if !defined(VGO_darwin) && !defined(VGO_solaris)
9 // Because our allocations are in multiples of 8 or 16, 99 will round up
13 // XXX: would be better to have a HAVE_MALLOC_USABLE_SIZE variable here
14 assert(104 == malloc_usable_size(x
) ||
15 112 == malloc_usable_size(x
));
16 assert( 0 == malloc_usable_size(NULL
));
17 assert( 0 == malloc_usable_size((void*)0xdeadbeef));