Home | History | Annotate | Download | only in tzcode

Lines Matching refs:btmp

177 				const struct tm * btmp);
1659 tmcomp(atmp, btmp)
1661 register const struct tm * const btmp;
1665 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1666 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1667 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1668 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1669 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1670 result = atmp->tm_sec - btmp->tm_sec;