diff options
Diffstat (limited to 'string')
-rw-r--r-- | string/strchrnul.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/string/strchrnul.c b/string/strchrnul.c index e7887fa285..01fa25bdb7 100644 --- a/string/strchrnul.c +++ b/string/strchrnul.c @@ -51,5 +51,6 @@ __strchrnul (const char *str, int c_in) return (char *) word_ptr + index_first_zero_eq (word, repeated_c); } #ifndef STRCHRNUL +libc_hidden_def (__strchrnul) weak_alias (__strchrnul, strchrnul) #endif |