#include <stdlib.h>

int fuite( int n )
{ int *x, *y;
  x = (int*) calloc( n, sizeof(int) );
  y = (int*) calloc( n, sizeof(int) );
  free( y );
}

int main( void )
{
  fuite( 5 );
}
