add ABI compat aliases for a number of locale_t functions
authorRich Felker <dalias@aerifal.cx>
Wed, 24 Jul 2013 22:40:52 +0000 (18:40 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 24 Jul 2013 22:40:52 +0000 (18:40 -0400)
src/locale/duplocale.c
src/locale/freelocale.c
src/locale/iswctype_l.c
src/locale/newlocale.c
src/locale/towlower_l.c
src/locale/towupper_l.c
src/locale/uselocale.c
src/locale/wctype_l.c

index 5f01e13..f9fc1ff 100644 (file)
@@ -1,6 +1,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include "locale_impl.h"
+#include "libc.h"
 
 locale_t duplocale(locale_t old)
 {
@@ -9,3 +10,5 @@ locale_t duplocale(locale_t old)
        if (new && old != LC_GLOBAL_LOCALE) memcpy(new, old, sizeof *new);
        return new;
 }
+
+weak_alias(duplocale, __duplocale);
index 4e089f2..ee3f029 100644 (file)
@@ -1,7 +1,10 @@
 #include <stdlib.h>
 #include "locale_impl.h"
+#include "libc.h"
 
 void freelocale(locale_t l)
 {
        free(l);
 }
+
+weak_alias(freelocale, __freelocale);
index 1dccef6..13dfb1e 100644 (file)
@@ -1,6 +1,9 @@
 #include <wctype.h>
+#include "libc.h"
 
 int iswctype_l(wint_t c, wctype_t t, locale_t l)
 {
        return iswctype(c, t);
 }
+
+weak_alias(iswctype_l, __iswctype_l);
index 986e796..447c8fc 100644 (file)
@@ -1,6 +1,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include "locale_impl.h"
+#include "libc.h"
 
 locale_t newlocale(int mask, const char *name, locale_t base)
 {
@@ -9,3 +10,5 @@ locale_t newlocale(int mask, const char *name, locale_t base)
        if (!base) base = calloc(1, sizeof *base);
        return base;
 }
+
+weak_alias(newlocale, __newlocale);
index 05fcde5..aaaea37 100644 (file)
@@ -1,6 +1,9 @@
 #include <wctype.h>
+#include "libc.h"
 
 wint_t towlower_l(wint_t c, locale_t l)
 {
        return towlower(c);
 }
+
+weak_alias(towlower_l, __towlower_l);
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);
index 9c79957..224ef38 100644 (file)
@@ -1,5 +1,6 @@
 #include "locale_impl.h"
 #include "pthread_impl.h"
+#include "libc.h"
 
 locale_t uselocale(locale_t l)
 {
@@ -8,3 +9,5 @@ locale_t uselocale(locale_t l)
        if (l) self->locale = l;
        return old;
 }
+
+weak_alias(uselocale, __uselocale);
index 01f9c67..601bab3 100644 (file)
@@ -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);