Home | History | Annotate | Download | only in tests
      1 
      2 #include <stdio.h>
      3 #include <stdlib.h>
      4 
      5 int main ( void )
      6 {
      7    int i;
      8    void* p = malloc(177);
      9    for (i = 0; i < 2; i++)
     10      free(p);
     11    return 0;
     12 }
     13