Home
last modified time | relevance | path

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

/bionic/libc/tzcode/
Dlocaltime.c245 static int tmcomp P((const struct tm * atmp,
1783 tmcomp(atmp, btmp) in tmcomp() argument
1784 register const struct tm * const atmp; in tmcomp()
1789 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1790 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1791 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1792 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1793 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1794 result = atmp->tm_sec - btmp->tm_sec;