| 2601 | char buf[8]; |
| 2602 | |
| 2603 | convert64(val, buf); |
| 2604 | fwrite(buf, sizeof buf, 1, fp); |
| 2605 | } |
| 2606 | } |
| 2607 | |
| 2608 | static int |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected