| 215 | }; |
| 216 | |
| 217 | struct zone { |
| 218 | int z_filenum; |
| 219 | lineno z_linenum; |
| 220 | |
| 221 | const char * z_name; |
| 222 | zic_t z_stdoff; |
| 223 | char * z_rule; |
| 224 | const char * z_format; |
| 225 | char z_format_specifier; |
| 226 | |
| 227 | bool z_isdst; |
| 228 | zic_t z_save; |
| 229 | |
| 230 | struct rule * z_rules; |
| 231 | ptrdiff_t z_nrules; |
| 232 | |
| 233 | struct rule z_untilrule; |
| 234 | zic_t z_untiltime; |
| 235 | }; |
| 236 | |
| 237 | #if ! HAVE_SYMLINK |
| 238 | static ssize_t |
nothing calls this directly
no outgoing calls
no test coverage detected