diff options
Diffstat (limited to 'sysdeps/generic')
-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 |
6 files changed, 13 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) |