make all .o files depend on *_impl.h and libc.h
[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 }