sleeptest.c

int
main (void)
{
  int i;

  for (i = 0; i < 5; ++i) {
    busywork_2secs ();
    sleep (6);
  }
  return 0;
}