Home | History | Annotate | Download | only in musl-locale
      1 #include <string.h>
      2 #include <locale.h>
      3 
      4 char *strerror_l(int err, locale_t l)
      5 {
      6 	return strerror(err);
      7 }
      8