add ABI compat aliases for a number of locale_t functions
[musl] / src / locale / wctype_l.c
index 01f9c67..601bab3 100644 (file)
@@ -1,6 +1,9 @@
 #include <wctype.h>
+#include "libc.h"
 
 wctype_t wctype_l(const char *s, locale_t l)
 {
        return wctype(s);
 }
+
+weak_alias(wctype_l, __wctype_l);