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