summaryrefslogtreecommitdiff
path: root/src/locale/strftime_l.c
blob: 70b2f15157e593753061668080cefab596befccb (plain) (blame)
1
2
3
4
5
6
7
#include <locale.h>
#include <time.h>

size_t strftime_l(char *s, size_t n, const char *f, const struct tm *tm, locale_t l)
{
	return strftime(s, n, f, tm);
}