From ebb4763b7fa6c54ee27fcd944e1d83d892f43906 Mon Sep 17 00:00:00 2001 From: das Date: Sat, 28 Feb 2009 06:05:37 +0000 Subject: Add restrict qualifiers. I missed this file in my previous commit. --- lib/libc/string/stpcpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/string/stpcpy.c') diff --git a/lib/libc/string/stpcpy.c b/lib/libc/string/stpcpy.c index 0bee746..beb1159 100644 --- a/lib/libc/string/stpcpy.c +++ b/lib/libc/string/stpcpy.c @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include char * -stpcpy(char * to, const char * from) +stpcpy(char * __restrict to, const char * __restrict from) { for (; (*to = *from); ++from, ++to); -- cgit v1.1