summaryrefslogtreecommitdiff
path: root/libgcompat/time.c
blob: a058edb1066cdb3a30e94057bc2bd3f6b621fd9d (plain) (blame)
1
2
3
4
5
6
7
#include <time.h>

size_t __strftime_l(char *restrict s, size_t n, const char *restrict f,
		    const struct tm *restrict tm, locale_t loc)
{
	return strftime_l(s, n, f, tm, loc);
}