#include <stdio.h>

void neatfree(char *debuglabel, void *tofree) {
  fprintf(stderr, "Freeing memory at \"%s\"\n", debuglabel);
  free(tofree);
}
