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