70b2f15157e593753061668080cefab596befccb
[musl] / src / locale / strftime_l.c
1 #include <locale.h>
2 #include <time.h>
3
4 size_t strftime_l(char *s, size_t n, const char *f, const struct tm *tm, locale_t l)
5 {
6         return strftime(s, n, f, tm);
7 }