fix nl_langinfo to actually use the existing, correct internal version
[musl] / src / locale / nl_langinfo.c
diff --git a/src/locale/nl_langinfo.c b/src/locale/nl_langinfo.c
deleted file mode 100644 (file)
index bb3a2c4..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <langinfo.h>
-
-// FIXME: other items
-
-char *nl_langinfo(nl_item item)
-{
-       switch (item) {
-       case CODESET:
-               return "UTF-8";
-       default:
-               return "";
-       }
-}