Home | History | Annotate | Download | only in time

Lines Matching defs:trail

1223 	int		trail;
1240 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
1242 trail / DIVISOR;
1243 trail %= DIVISOR;
1244 if (trail < 0 && lead > 0) {
1245 trail += DIVISOR;
1247 } else if (lead < 0 && trail > 0) {
1248 trail -= DIVISOR;
1252 printf("%d", trail);
1253 else printf("%d%d", lead, ((trail < 0) ? -trail : trail));