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

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