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

c6d234
Introduce prototype-style function definition for bzero.  This happened
c6d234
upstream as part of:
c6d234
c6d234
commit ddcf6798d35beca3c4eec80ea448b57fd45558f4
c6d234
Author: Wilco Dijkstra <wdijkstr@arm.com>
c6d234
Date:   Fri Feb 27 14:41:46 2015 +0000
c6d234
c6d234
    Rather than using a C implementation of memset, directly call memset, which
c6d234
    typically has a much faster optimized implementation.
c6d234
c6d234
diff --git a/string/bzero.c b/string/bzero.c
c6d234
index b7a88ec9253bdf0c..c3276e7752935801 100644
c6d234
--- a/string/bzero.c
c6d234
+++ b/string/bzero.c
c6d234
@@ -23,9 +23,7 @@
c6d234
 
c6d234
 /* Set N bytes of S to 0.  */
c6d234
 void
c6d234
-__bzero (s, len)
c6d234
-     void *s;
c6d234
-     size_t len;
c6d234
+__bzero (void *s, size_t len)
c6d234
 {
c6d234
   long int dstp = (long int) s;
c6d234
   const op_t zero = 0;