| 193 | # undef localtime_r |
| 194 | # define localtime_r zdump_localtime_r |
| 195 | static struct tm * |
| 196 | localtime_r(time_t *tp, struct tm *tmp) |
| 197 | { |
| 198 | struct tm *r = localtime(tp); |
| 199 | if (r) { |
| 200 | *tmp = *r; |
| 201 | r = tmp; |
| 202 | } |
| 203 | return r; |
| 204 | } |
| 205 | # endif |
| 206 | |
| 207 | # undef localtime_rz |
no test coverage detected