Home | History | Annotate | Download | only in tzcode

Lines Matching refs:btmp

238                 const struct tm * btmp));
1775 tmcomp(atmp, btmp)
1777 register const struct tm * const btmp;
1781 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1782 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1783 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1784 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1785 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1786 result = atmp->tm_sec - btmp->tm_sec;