1 #include <locale.h> 2 #include <langinfo.h> 3 4 char *nl_langinfo_l(nl_item item, locale_t l) 5 { 6 return nl_langinfo(item); 7 } 8