1void
2broken030599(int *n)
3{
4  int i, x;
5  for (i = 0; i < 32; i++) {
6    x=0;
7    x++;
8    if (i & 4)
9      x++;
10    x++;
11  }
12}
13