From a0ad34a541a8755b166e62a1a7c4dd37e05a2e12 Mon Sep 17 00:00:00 2001 From: tjr Date: Sat, 7 Sep 2002 03:38:13 +0000 Subject: Add restrict qualifiers to wcsstr()'s arguments. --- include/wchar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/wchar.h b/include/wchar.h index bfb2720..b49191e 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -144,7 +144,7 @@ wchar_t *wcsrchr(const wchar_t *, wchar_t); size_t wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t, mbstate_t * __restrict); size_t wcsspn(const wchar_t *, const wchar_t *); -wchar_t *wcsstr(const wchar_t *, const wchar_t *); +wchar_t *wcsstr(const wchar_t * __restrict, const wchar_t * __restrict); int wctob(wint_t); wchar_t *wmemchr(const wchar_t *, wchar_t, size_t); int wmemcmp(const wchar_t *, const wchar_t *, size_t); -- cgit v1.1