add all missing wchar functions except floating point parsers
[musl] / src / locale / wcscoll_l.c
diff --git a/src/locale/wcscoll_l.c b/src/locale/wcscoll_l.c
new file mode 100644 (file)
index 0000000..f257ec8
--- /dev/null
@@ -0,0 +1,6 @@
+#include <wchar.h>
+
+int wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale)
+{
+       return wcscoll(l, r);
+}