From e5a7f14c818a622ea7fbbc981657eb0c47ce3c00 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 6 Feb 2012 21:29:31 -0500 Subject: add more of the locale_t interfaces, all dummied out to ignore the locale --- src/locale/wctype_l.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/locale/wctype_l.c (limited to 'src/locale/wctype_l.c') diff --git a/src/locale/wctype_l.c b/src/locale/wctype_l.c new file mode 100644 index 00000000..01f9c67f --- /dev/null +++ b/src/locale/wctype_l.c @@ -0,0 +1,6 @@ +#include + +wctype_t wctype_l(const char *s, locale_t l) +{ + return wctype(s); +} -- cgit v1.2.1