| 2225 | } |
| 2226 | |
| 2227 | struct tm * |
| 2228 | localtime(const time_t *timep) |
| 2229 | { |
| 2230 | # if !SUPPORT_C89 |
| 2231 | static struct tm tm; |
| 2232 | # endif |
| 2233 | return localtime_tzset(timep, tm_multi(&tm, LOCALTIME_TM_MULTI), true); |
| 2234 | } |
| 2235 | |
| 2236 | struct tm * |
| 2237 | localtime_r(const time_t *restrict timep, struct tm *restrict tmp) |
no test coverage detected