#include <stdlib.h>
#include <stdio.h>
#include "memwatch.h"

int main(void)
{
  int *ptr1, *ptr2;
 

  ptr1 = malloc(1024);
  ptr2 = malloc(1024);

  ptr2 = ptr1;
  free(ptr2);
  free(ptr1);
}

