| 3767 | free(ab); |
| 3768 | free(envvar); |
| 3769 | } |
| 3770 | |
| 3771 | static void |
| 3772 | addtt(zic_t starttime, int type) |
| 3773 | { |
| 3774 | attypes = growalloc(attypes, sizeof *attypes, timecnt, &timecnt_alloc); |
| 3775 | attypes[timecnt].at = starttime; |
| 3776 | attypes[timecnt].dontmerge = false; |
| 3777 | attypes[timecnt].type = type; |
| 3778 | ++timecnt; |
| 3779 | } |
| 3780 |