25845f
Introduce prototype-style function definition for 32-bit POWER wcsrchr.
25845f
Upstream removed the old-style function definition in:
25845f
25845f
commit bb04e529f60df7138a4fe5f1ed016dd87ade59a3
25845f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25845f
Date:   Mon Oct 14 09:26:07 2013 -0500
25845f
25845f
    PowerPC: multiarch wcsrchr for PowerPC32
25845f
25845f
diff --git a/sysdeps/powerpc/powerpc32/power6/wcsrchr.c b/sysdeps/powerpc/powerpc32/power6/wcsrchr.c
25845f
index 333650190afff171..4deb44966915679f 100644
25845f
--- a/sysdeps/powerpc/powerpc32/power6/wcsrchr.c
25845f
+++ b/sysdeps/powerpc/powerpc32/power6/wcsrchr.c
25845f
@@ -21,9 +21,7 @@
25845f
 
25845f
 /* Find the last occurrence of WC in WCS.  */
25845f
 wchar_t *
25845f
-wcsrchr (wcs, wc)
25845f
-     const wchar_t *wcs;
25845f
-     const wchar_t wc;
25845f
+wcsrchr (const wchar_t *wcs, const wchar_t wc)
25845f
 {
25845f
   const wchar_t *wcs2 = wcs + 1;
25845f
   const wchar_t *retval = NULL;