1 int nap(int n)2 nap(int n) 3 { 4 register i; 5 6 while(n-- > 0){ 7 for(i = 0; i < 1000*1000*10; i++) 8 ; 9 } 10 return 0; 11 } 12