Blame SOURCES/glibc-rh1505492-prototypes-powerpc-memmove.patch

25845f
Introduce prototype-style function definition for POWER memmove.
25845f
Upstream removed the old-style definition in:
25845f
25845f
commit d6f68bbef4427850c2901728a1d13efc0e687297
25845f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25845f
Date:   Tue Jun 24 06:42:31 2014 -0500
25845f
25845f
    PowerPC: memmove default implementation cleanup
25845f
25845f
diff --git a/sysdeps/powerpc/memmove.c b/sysdeps/powerpc/memmove.c
25845f
index 50734e45458352c5..7d736bc0b0eb7d63 100644
25845f
--- a/sysdeps/powerpc/memmove.c
25845f
+++ b/sysdeps/powerpc/memmove.c
25845f
@@ -40,10 +40,7 @@
25845f
 #endif
25845f
 
25845f
 rettype
25845f
-MEMMOVE (a1, a2, len)
25845f
-     a1const void *a1;
25845f
-     a2const void *a2;
25845f
-     size_t len;
25845f
+MEMMOVE (a1const void *a1, a2const void *a2, size_t len)
25845f
 {
25845f
   unsigned long int dstp = (long int) dest;
25845f
   unsigned long int srcp = (long int) src;