Blame SOURCES/glibc-rh1505492-prototypes-memchr.patch

25845f
Introduce prototype-style function definitin for generic memchr.
25845f
Upstream did this as part of:
25845f
25845f
commit 1570a72bb8359c9a3a64c4e22d9ea47ce6fcff31
25845f
Author: Will Newton <will.newton@linaro.org>
25845f
Date:   Thu Jun 26 16:00:44 2014 +0100
25845f
25845f
    string/memchr.c: Merge from gnulib
25845f
25845f
diff --git a/string/memchr.c b/string/memchr.c
25845f
index d1880cfbaed951a6..f4650672e01385de 100644
25845f
--- a/string/memchr.c
25845f
+++ b/string/memchr.c
25845f
@@ -57,10 +57,7 @@
25845f
 
25845f
 /* Search no more than N bytes of S for C.  */
25845f
 __ptr_t
25845f
-MEMCHR (s, c_in, n)
25845f
-     const __ptr_t s;
25845f
-     int c_in;
25845f
-     size_t n;
25845f
+MEMCHR (const __ptr_t s, int c_in, size_t n)
25845f
 {
25845f
   const unsigned char *char_ptr;
25845f
   const unsigned long int *longword_ptr;