| 181 | |
| 182 | #if ! defined(HAVE_LOCALTIME_R) && ! defined(__MINGW32__) && !defined(DISABLED_FOR_FRAMAC) |
| 183 | struct tm *localtime_r(const time_t *timep, struct tm *result) |
| 184 | { |
| 185 | return localtime(timep); |
| 186 | } |
| 187 | #endif |
| 188 | |
| 189 | void set_part_name(partition_t *partition, const char *src, const unsigned int max_size) |
no outgoing calls
no test coverage detected