malloc(), realloc().. the dark side powerful it is

I see now I used Andy's stuff and just wrote my own showmem to output the results:

void showmem()
{
  char buffer[100];
 
  sprintf(buffer,"%04u %04u %04u : used/free/large",
      getMemoryUsed(),
      getFreeMemory(),
      getLargestAvailableMemoryBlock()
    );
 
  Serial.println(buffer);
}