diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/_strerror.c | 1 | ||||
-rw-r--r-- | sysdeps/generic/strcasecmp_l.c | 4 | ||||
-rw-r--r-- | sysdeps/generic/strncase_l.c | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/sysdeps/generic/_strerror.c b/sysdeps/generic/_strerror.c index c8f2a9c..f19217f 100644 --- a/sysdeps/generic/_strerror.c +++ b/sysdeps/generic/_strerror.c @@ -69,3 +69,4 @@ __strerror_r (int errnum, char *buf, size_t buflen) return (char *) _(INTUSE(_sys_errlist)[errnum]); } weak_alias (__strerror_r, strerror_r) +libc_hidden_def (__strerror_r) diff --git a/sysdeps/generic/strcasecmp_l.c b/sysdeps/generic/strcasecmp_l.c index 107ce8a..a13f66d 100644 --- a/sysdeps/generic/strcasecmp_l.c +++ b/sysdeps/generic/strcasecmp_l.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1997 Free Software Foundation, Inc. +/* Copyright (C) 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,3 +18,5 @@ #define USE_IN_EXTENDED_LOCALE_MODEL 1 #include <sysdeps/generic/strcasecmp.c> + +libc_hidden_def (__strcasecmp_l) diff --git a/sysdeps/generic/strncase_l.c b/sysdeps/generic/strncase_l.c index 424913f..7704fc7 100644 --- a/sysdeps/generic/strncase_l.c +++ b/sysdeps/generic/strncase_l.c @@ -1,6 +1,6 @@ /* Compare at most N characters of two strings without taking care for the case 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. The GNU C Library is free software; you can redistribute it and/or @@ -20,3 +20,5 @@ #define USE_IN_EXTENDED_LOCALE_MODEL 1 #include <sysdeps/generic/strncase.c> + +libc_hidden_def (__strncasecmp_l) |