From 31c81aaa01a6033c53b30d3ffa9aa806d10ecdf5 Mon Sep 17 00:00:00 2001 From: Adhemerval Zanella Date: Mon, 14 Oct 2013 09:14:06 -0500 Subject: PowerPC: multiarch strchrnul for PowerPC32 --- string/strchrnul.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'string') diff --git a/string/strchrnul.c b/string/strchrnul.c index 1f63572d6c..bf39636872 100644 --- a/string/strchrnul.c +++ b/string/strchrnul.c @@ -27,9 +27,13 @@ #undef __strchrnul #undef strchrnul +#ifndef STRCHRNUL +# define STRCHRNUL __strchrnul +#endif + /* Find the first occurrence of C in S or the final NUL byte. */ char * -__strchrnul (s, c_in) +STRCHRNUL (s, c_in) const char *s; int c_in; { -- cgit 1.4.1