summaryrefslogtreecommitdiff
path: root/src/locale/wctype_l.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-07-24 18:40:52 -0400
committerRich Felker <dalias@aerifal.cx>2013-07-24 18:40:52 -0400
commit4350935ca4521b647472b8c18053325e07541ba1 (patch)
tree12688c7c8dae04785a9edf07c2ef179a0637f5f6 /src/locale/wctype_l.c
parenta512c7d8496d587281a1da41adc02c7785339429 (diff)
downloadmusl-4350935ca4521b647472b8c18053325e07541ba1.tar.gz
add ABI compat aliases for a number of locale_t functions
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);