Home
last modified time | relevance | path

Searched refs:btmp (Results 1 – 1 of 1) sorted by relevance

/original-bsd/lib/libc/gen/
H A Dctime.c155 const struct tm * btmp));
1174 tmcomp(atmp, btmp) in tmcomp() argument
1176 register const struct tm * const btmp;
1180 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1181 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1182 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1183 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1184 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1185 result = atmp->tm_sec - btmp->tm_sec;