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