#include <stdio.h>

int main(void) {
	char *ptr = NULL;
	size_t siz = 256;
	
	ptr = malloc(siz);
	
	ptr = realloc(ptr + 5, siz * 2);

	return 0;
}
