Home | History | Annotate | Download | only in tzcode

Lines Matching refs:btmp

241                 const struct tm * btmp));
1746 tmcomp(atmp, btmp)
1748 register const struct tm * const btmp;
1752 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1753 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1754 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1755 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1756 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1757 result = atmp->tm_sec - btmp->tm_sec;