diff options
Diffstat (limited to 'newlib/libc/string/wcschr.c')
-rw-r--r-- | newlib/libc/string/wcschr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/wcschr.c b/newlib/libc/string/wcschr.c index 7590009..f883f54 100644 --- a/newlib/libc/string/wcschr.c +++ b/newlib/libc/string/wcschr.c @@ -59,10 +59,10 @@ No supporting OS subroutines are required. wchar_t * _DEFUN (wcschr, (s, c), - _CONST wchar_t * s, + const wchar_t * s, wchar_t c) { - _CONST wchar_t *p; + const wchar_t *p; p = s; do |