diff options
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wcrtomb.c | 1 | ||||
-rw-r--r-- | wcsmbs/wcschr.c | 1 | ||||
-rw-r--r-- | wcsmbs/wcscmp.c | 1 | ||||
-rw-r--r-- | wcsmbs/wcscoll.c | 1 | ||||
-rw-r--r-- | wcsmbs/wcspbrk.c | 1 | ||||
-rw-r--r-- | wcsmbs/wcsspn.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/wcsmbs/wcrtomb.c b/wcsmbs/wcrtomb.c index 53e119b004..5dba73acc3 100644 --- a/wcsmbs/wcrtomb.c +++ b/wcsmbs/wcrtomb.c @@ -108,3 +108,4 @@ __wcrtomb (char *s, wchar_t wc, mbstate_t *ps) return result; } weak_alias (__wcrtomb, wcrtomb) +libc_hidden_weak (wcrtomb) diff --git a/wcsmbs/wcschr.c b/wcsmbs/wcschr.c index 844accdc4f..15b55d4543 100644 --- a/wcsmbs/wcschr.c +++ b/wcsmbs/wcschr.c @@ -32,3 +32,4 @@ wcschr (wcs, wc) return NULL; } +libc_hidden_def (wcschr) diff --git a/wcsmbs/wcscmp.c b/wcsmbs/wcscmp.c index 662cc916a9..8241c67f9b 100644 --- a/wcsmbs/wcscmp.c +++ b/wcsmbs/wcscmp.c @@ -41,3 +41,4 @@ wcscmp (s1, s2) return c1 - c2; } +libc_hidden_def (wcscmp) diff --git a/wcsmbs/wcscoll.c b/wcsmbs/wcscoll.c index 50f31a9231..40bd584e8b 100644 --- a/wcsmbs/wcscoll.c +++ b/wcsmbs/wcscoll.c @@ -38,4 +38,5 @@ #ifndef USE_IN_EXTENDED_LOCALE_MODEL weak_alias (__wcscoll, wcscoll) +libc_hidden_weak (wcscoll) #endif diff --git a/wcsmbs/wcspbrk.c b/wcsmbs/wcspbrk.c index 6cb4d187d4..9dd09551fd 100644 --- a/wcsmbs/wcspbrk.c +++ b/wcsmbs/wcspbrk.c @@ -34,3 +34,4 @@ wcspbrk (wcs, accept) return NULL; } +libc_hidden_def (wcspbrk) diff --git a/wcsmbs/wcsspn.c b/wcsmbs/wcsspn.c index c496cfd7c2..83e2026369 100644 --- a/wcsmbs/wcsspn.c +++ b/wcsmbs/wcsspn.c @@ -44,3 +44,4 @@ wcsspn (wcs, accept) return count; } +libc_hidden_def (wcsspn) |