more locale_t interfaces (string stuff) and header updates
[musl] / src / locale / strerror_l.c
1 #include <string.h>
2 #include <locale.h>
3
4 char *strerror_l(int err, locale_t l)
5 {
6         return strerror(err);
7 }