| 172 | |
| 173 | #if HAVE_STRFTIME_L |
| 174 | size_t |
| 175 | strftime_l(char *restrict s, size_t maxsize, char const *restrict format, |
| 176 | struct tm const *restrict t, |
| 177 | ATTRIBUTE_MAYBE_UNUSED locale_t locale) |
| 178 | { |
| 179 | /* Just call strftime, as only the C locale is supported. */ |
| 180 | return strftime(s, maxsize, format, t); |
| 181 | } |
| 182 | #endif |
| 183 | |
| 184 | size_t |
nothing calls this directly
no test coverage detected