blob: 4b2b5a94106cf787d7efbfd95f5f21a596b94b8a [file] [log] [blame]
#include <time.h>
#include <sys/times.h>
int
bar (void)
{
struct tms buf;
clock_t ticks = times (&buf);
return ticks == 0 && time (NULL) == 0;
}