| 2609 | atcomp(const void *avp, const void *bvp) |
| 2610 | { |
| 2611 | struct attype const *ap = avp, *bp = bvp; |
| 2612 | zic_t a = ap->at, b = bp->at; |
| 2613 | return a < b ? -1 : a > b; |
| 2614 | } |
| 2615 | |
| 2616 | struct timerange { |
| 2617 | int defaulttype; |
| 2618 | ptrdiff_t base, count; |
| 2619 | ptrdiff_t leapbase, leapcount; |
nothing calls this directly
no outgoing calls
no test coverage detected