From 9c261371ec47f7816494872a643102749cebefc3 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" 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/wcscpy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/string/wcscpy.c') diff --git a/lib/libc/string/wcscpy.c b/lib/libc/string/wcscpy.c index fbe56d61c3d6a..9e72738ffed43 100644 --- a/lib/libc/string/wcscpy.c +++ b/lib/libc/string/wcscpy.c @@ -39,8 +39,8 @@ __FBSDID("$FreeBSD$"); wchar_t * wcscpy(s1, s2) - wchar_t *s1; - const wchar_t *s2; + wchar_t * __restrict s1; + const wchar_t * __restrict s2; { wchar_t *p; const wchar_t *q; -- cgit v1.2.3