1 #include <string.h> 2 #include <locale.h> 3 strerror_l(int err,locale_t l)4 char *strerror_l(int err, locale_t l) 5 { 6 return strerror(err); 7 } 8