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

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