Ejemplo n.º 1
0
void foo (void)
{


  while (!is_end_of_statement ())
    p++;
}
Ejemplo n.º 2
0
Archivo: loop-12.c Proyecto: Rotund/huc
void foo (void)
{
  /* The is_end_of_statement call was moved out of the loop at one stage,
     resulting in an endless loop.  */
  while (!is_end_of_statement ())
    p++;
}