diff options
Diffstat (limited to 'wcsmbs/wmemchr.c')
-rw-r--r-- | wcsmbs/wmemchr.c | 5 |
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) |