about summary refs log tree commit diff
path: root/wcsmbs/wmemchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wmemchr.c')
-rw-r--r--wcsmbs/wmemchr.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/wcsmbs/wmemchr.c b/wcsmbs/wmemchr.c
index 9e8d57bd5d..364a95d8c3 100644
--- a/wcsmbs/wmemchr.c
+++ b/wcsmbs/wmemchr.c
@@ -23,10 +23,7 @@
 #endif
 
 wchar_t *
-__wmemchr (s, c, n)
-     const wchar_t *s;
-     wchar_t c;
-     size_t n;
+__wmemchr (const wchar_t *s, wchar_t c, size_t n)
 {
   /* For performance reasons unfold the loop four times.  */
   while (n >= 4)