diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/strcasecmp_l.c | 1 | ||||
-rw-r--r-- | sysdeps/generic/strncase_l.c | 1 | ||||
-rw-r--r-- | sysdeps/generic/wcstol_l.c | 4 | ||||
-rw-r--r-- | sysdeps/generic/wcstoll_l.c | 2 | ||||
-rw-r--r-- | sysdeps/generic/wcstoul_l.c | 4 | ||||
-rw-r--r-- | sysdeps/generic/wcstoull_l.c | 4 | ||||
-rw-r--r-- | sysdeps/wordsize-64/wcstol_l.c | 1 | ||||
-rw-r--r-- | sysdeps/wordsize-64/wcstoul_l.c | 1 |
8 files changed, 15 insertions, 3 deletions
diff --git a/sysdeps/generic/strcasecmp_l.c b/sysdeps/generic/strcasecmp_l.c index a13f66dae8..1cd3fe14c5 100644 --- a/sysdeps/generic/strcasecmp_l.c +++ b/sysdeps/generic/strcasecmp_l.c @@ -20,3 +20,4 @@ #include <sysdeps/generic/strcasecmp.c> libc_hidden_def (__strcasecmp_l) +weak_alias (__strcasecmp_l, strcasecmp_l) diff --git a/sysdeps/generic/strncase_l.c b/sysdeps/generic/strncase_l.c index 7704fc7fff..0e61ebec7d 100644 --- a/sysdeps/generic/strncase_l.c +++ b/sysdeps/generic/strncase_l.c @@ -22,3 +22,4 @@ #include <sysdeps/generic/strncase.c> libc_hidden_def (__strncasecmp_l) +weak_alias (__strncasecmp_l, strncasecmp_l) diff --git a/sysdeps/generic/wcstol_l.c b/sysdeps/generic/wcstol_l.c index 6c7870ef5e..91b0d3fa7d 100644 --- a/sysdeps/generic/wcstol_l.c +++ b/sysdeps/generic/wcstol_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -28,3 +28,5 @@ extern long int ____wcstol_l_internal (const wchar_t *, wchar_t **, int, int, __locale_t); #include "wcstol.c" + +weak_alias (__wcstol_l, wcstol_l) diff --git a/sysdeps/generic/wcstoll_l.c b/sysdeps/generic/wcstoll_l.c index 7c288ab931..9ed2c5aca7 100644 --- a/sysdeps/generic/wcstoll_l.c +++ b/sysdeps/generic/wcstoll_l.c @@ -28,3 +28,5 @@ extern long long int ____wcstoll_l_internal (const wchar_t *, wchar_t **, int, int, __locale_t); #include <wcstoll.c> + +weak_alias (__wcstoll_l, wcstoll_l) diff --git a/sysdeps/generic/wcstoul_l.c b/sysdeps/generic/wcstoul_l.c index e70cafe95b..9d567bbcc5 100644 --- a/sysdeps/generic/wcstoul_l.c +++ b/sysdeps/generic/wcstoul_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -28,3 +28,5 @@ extern unsigned long int ____wcstoul_l_internal (const wchar_t *, wchar_t **, int, int, __locale_t); #include <wcstoul.c> + +weak_alias (__wcstoul_l, wcstoul_l) diff --git a/sysdeps/generic/wcstoull_l.c b/sysdeps/generic/wcstoull_l.c index 7e8e58d7f4..f8f05ba8d8 100644 --- a/sysdeps/generic/wcstoull_l.c +++ b/sysdeps/generic/wcstoull_l.c @@ -1,5 +1,5 @@ /* Convert string representing a number to integer value, using given locale. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -29,3 +29,5 @@ extern unsigned long long int ____wcstoull_l_internal (const wchar_t *, __locale_t); #include <wcstoull.c> + +weak_alias (__wcstoull_l, wcstoull_l) diff --git a/sysdeps/wordsize-64/wcstol_l.c b/sysdeps/wordsize-64/wcstol_l.c index 06bf40e0af..57fb641839 100644 --- a/sysdeps/wordsize-64/wcstol_l.c +++ b/sysdeps/wordsize-64/wcstol_l.c @@ -8,3 +8,4 @@ #undef __wcstoll_l strong_alias (____wcstol_l_internal, ____wcstoll_l_internal) weak_alias (__wcstol_l, __wcstoll_l) +weak_alias (__wcstol_l, wcstoll_l) diff --git a/sysdeps/wordsize-64/wcstoul_l.c b/sysdeps/wordsize-64/wcstoul_l.c index 2289caf4b9..f9b34d4978 100644 --- a/sysdeps/wordsize-64/wcstoul_l.c +++ b/sysdeps/wordsize-64/wcstoul_l.c @@ -8,3 +8,4 @@ #undef __wcstoull_l strong_alias (____wcstoul_l_internal, ____wcstoull_l_internal) weak_alias (__wcstoul_l, __wcstoull_l) +weak_alias (__wcstoul_l, wcstoull_l) |