1#include <locale.h>
2#include <time.h>
3
4size_t strftime_l(char *restrict s, size_t n, const char *restrict f, const struct tm *restrict tm, locale_t l)
5{
6	return strftime(s, n, f, tm);
7}
8