nap.c 90 B

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