From 4350935ca4521b647472b8c18053325e07541ba1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 24 Jul 2013 18:40:52 -0400 Subject: add ABI compat aliases for a number of locale_t functions --- src/locale/wctype_l.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/locale/wctype_l.c') 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 +#include "libc.h" wctype_t wctype_l(const char *s, locale_t l) { return wctype(s); } + +weak_alias(wctype_l, __wctype_l); -- cgit v1.2.1