From ad5ac67c75cb6f81419d285b0cf5e7bd559c2098 Mon Sep 17 00:00:00 2001 From: tjr Date: Sat, 7 Sep 2002 04:03:28 +0000 Subject: Add restrict qualifiers where C99 permits them. All of these already had restrict qualifiers on their prototypes in . --- lib/libc/string/wcscat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/string/wcscat.c') diff --git a/lib/libc/string/wcscat.c b/lib/libc/string/wcscat.c index 62752ee..1568c2c 100644 --- a/lib/libc/string/wcscat.c +++ b/lib/libc/string/wcscat.c @@ -39,8 +39,8 @@ __FBSDID("$FreeBSD$"); wchar_t * wcscat(s1, s2) - wchar_t *s1; - const wchar_t *s2; + wchar_t * __restrict s1; + const wchar_t * __restrict s2; { wchar_t *p; wchar_t *q; -- cgit v1.1