#include <stdlib.h> void *calloc(void *existing_memory, size_t new_size);
my_ptr = malloc(BLOCK_SIZE); ..... my_ptr = realloc(my_ptr, BLOCK_SIZE * 10)