| 306 | RTM_EXPORT(asctime); |
| 307 | |
| 308 | char *ctime_r(const time_t * tim_p, char * result) |
| 309 | { |
| 310 | struct tm tm; |
| 311 | return asctime_r(localtime_r(tim_p, &tm), result); |
| 312 | } |
| 313 | RTM_EXPORT(ctime_r); |
| 314 | |
| 315 | char *ctime(const time_t *tim_p) |
nothing calls this directly
no test coverage detected