pr2404a.c 152 B

12345678910
  1. #include <time.h>
  2. #include <sys/times.h>
  3. int
  4. bar (void)
  5. {
  6. struct tms buf;
  7. clock_t ticks = times (&buf);
  8. return ticks == 0 && time (NULL) == 0;
  9. }