#include "time.h" size_t strftime_l(char *s, size_t max, const char *format, const struct tm *tm, locale_t l) { return strftime(s, max, format, tm); }