diff options
Diffstat (limited to 'src/locale/nl_langinfo_l.c')
-rw-r--r-- | src/locale/nl_langinfo_l.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/locale/nl_langinfo_l.c b/src/locale/nl_langinfo_l.c new file mode 100644 index 00000000..b54db95c --- /dev/null +++ b/src/locale/nl_langinfo_l.c @@ -0,0 +1,7 @@ +#include <locale.h> +#include <langinfo.h> + +char *nl_langinfo_l(nl_item item, locale_t l) +{ + return nl_langinfo(item); +} |