diff options
Diffstat (limited to 'wcsmbs/wcscspn.c')
-rw-r--r-- | wcsmbs/wcscspn.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/wcsmbs/wcscspn.c b/wcsmbs/wcscspn.c index d735f8c86e..fb21a413c0 100644 --- a/wcsmbs/wcscspn.c +++ b/wcsmbs/wcscspn.c @@ -25,9 +25,7 @@ /* Return the length of the maximum initial segment of WCS which contains only wide-characters not in REJECT. */ size_t -wcscspn (wcs, reject) - const wchar_t *wcs; - const wchar_t *reject; +wcscspn (const wchar_t *wcs, const wchar_t *reject) { size_t count = 0; |