1main ()
2{
3  typedef short int xtype;
4
5  xtype i;
6  xtype ii;
7
8  for (i = 0; i < 100; i++)
9    for (ii = 65535; --ii;)
10      ;
11}
12