diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-02-06 15:05:56 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-02-08 17:13:58 -0300 |
commit | 22999b2f0fb62eed1af4095d062bd1272d6afeb1 (patch) | |
tree | cb21ffd0c043cdb5393c3529148b83679349d7a5 /include | |
parent | 7ea510127e2067efa07865158ac92c330c379950 (diff) | |
download | glibc-22999b2f0fb62eed1af4095d062bd1272d6afeb1.tar glibc-22999b2f0fb62eed1af4095d062bd1272d6afeb1.tar.gz glibc-22999b2f0fb62eed1af4095d062bd1272d6afeb1.tar.bz2 glibc-22999b2f0fb62eed1af4095d062bd1272d6afeb1.zip |
string: Add libc_hidden_proto for memrchr
Although static linker can optimize it to local call, it follows the
internal scheme to provide hidden proto and definitions.
Reviewed-by: Carlos Eduardo Seo <carlos.seo@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h index 6e364e8a67..a9120ff37c 100644 --- a/include/string.h +++ b/include/string.h @@ -119,6 +119,7 @@ extern __typeof (memmem) __memmem; libc_hidden_proto (__memmem) libc_hidden_proto (__ffs) libc_hidden_proto (__strerror_l) +libc_hidden_proto (__memrchr) #if IS_IN (libc) /* Avoid hidden reference to IFUNC symbol __explicit_bzero_chk. */ |