summaryrefslogtreecommitdiff
path: root/src/locale/wctype_l.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/locale/wctype_l.c')
-rw-r--r--src/locale/wctype_l.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/locale/wctype_l.c b/src/locale/wctype_l.c
index 01f9c67f..601bab37 100644
--- a/src/locale/wctype_l.c
+++ b/src/locale/wctype_l.c
@@ -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);