use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / locale / strftime_l.c
1 #include <locale.h>
2 #include <time.h>
3
4 size_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 }