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