blob: a42a5a5b32c4a4d8fd7f4128df7b82f3c9eccdeb [file] [log] [blame]
#include <assert.h>
#include <malloc.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
// Since our allocations are in multiples of 8, 99 will round up to 104.
int* x = malloc(99);
# if !defined(_AIX)
assert(104 == malloc_usable_size(x));
# endif
return 0;
}