aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/wcscspn.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/wcscspn.c')
-rw-r--r--newlib/libc/string/wcscspn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/string/wcscspn.c b/newlib/libc/string/wcscspn.c
index 3554996..54bca2f 100644
--- a/newlib/libc/string/wcscspn.c
+++ b/newlib/libc/string/wcscspn.c
@@ -57,11 +57,11 @@ No supporting OS subroutines are required.
size_t
_DEFUN (wcscspn, (s, set),
- _CONST wchar_t * s,
- _CONST wchar_t * set)
+ const wchar_t * s,
+ const wchar_t * set)
{
- _CONST wchar_t *p;
- _CONST wchar_t *q;
+ const wchar_t *p;
+ const wchar_t *q;
p = s;
while (*p)