diff options
Diffstat (limited to 'wcsmbs/wcspbrk.c')
-rw-r--r-- | wcsmbs/wcspbrk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wcsmbs/wcspbrk.c b/wcsmbs/wcspbrk.c index 2a417a5897..5a3438fac6 100644 --- a/wcsmbs/wcspbrk.c +++ b/wcsmbs/wcspbrk.c @@ -22,8 +22,8 @@ /* Find the first occurrence in WCS of any wide-character in ACCEPT. */ wchar_t * wcspbrk (wcs, accept) - register const wchar_t *wcs; - register const wchar_t *accept; + const wchar_t *wcs; + const wchar_t *accept; { while (*wcs != L'\0') if (wcschr (accept, *wcs) == NULL) |