add ABI compat aliases for a number of locale_t functions
[musl] / src / locale / towupper_l.c
index aa861ae..ad02a4b 100644 (file)
@@ -1,6 +1,9 @@
 #include <wctype.h>
+#include "libc.h"
 
 wint_t towupper_l(wint_t c, locale_t l)
 {
        return towupper(c);
 }
+
+weak_alias(towupper_l, __towupper_l);