diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-02-06 13:15:22 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-02-08 17:13:56 -0300 |
commit | 7ea510127e2067efa07865158ac92c330c379950 (patch) | |
tree | df830b3da00683a56693e2cca08268b8764c14eb /sysdeps/m68k | |
parent | 9fd63e35371b9939e9153907c6a753e6960b68ad (diff) | |
download | glibc-7ea510127e2067efa07865158ac92c330c379950.zip glibc-7ea510127e2067efa07865158ac92c330c379950.tar.gz glibc-7ea510127e2067efa07865158ac92c330c379950.tar.bz2 |
string: Add libc_hidden_proto for strchrnul
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 'sysdeps/m68k')
-rw-r--r-- | sysdeps/m68k/strchrnul.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/m68k/strchrnul.S b/sysdeps/m68k/strchrnul.S index f4759a0..1aee431 100644 --- a/sysdeps/m68k/strchrnul.S +++ b/sysdeps/m68k/strchrnul.S @@ -263,4 +263,5 @@ L(L9:) rts END(__strchrnul) +libc_hidden_def (__strchrnul) weak_alias (__strchrnul, strchrnul) |