#include #include "inc/malloc.h" int main(void) { int *arr = malloc(42); arr = realloc(arr, 42); free(arr); show_alloc_sizes(); return 0; }