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

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