Lines Matching refs:lt
79 static struct tm *lt; in atot() local
89 if (!lt) { in atot()
92 lt = localtime(&tval); in atot()
123 lt->tm_year = year - 1900; in atot()
124 lt->tm_mon = month - 1; in atot()
125 lt->tm_mday = day; in atot()
126 lt->tm_hour = 0; in atot()
127 lt->tm_min = 0; in atot()
128 lt->tm_sec = 0; in atot()
129 lt->tm_isdst = -1; in atot()
130 if ((tval = mktime(lt)) < 0) in atot()