add more of the locale_t interfaces, all dummied out to ignore the locale
[musl] / src / locale / towlower_l.c
diff --git a/src/locale/towlower_l.c b/src/locale/towlower_l.c
new file mode 100644 (file)
index 0000000..05fcde5
--- /dev/null
@@ -0,0 +1,6 @@
+#include <wctype.h>
+
+wint_t towlower_l(wint_t c, locale_t l)
+{
+       return towlower(c);
+}