diff --git a/lib/libc/string/stpcpy.c b/lib/libc/string/stpcpy.c index 0bee74629057..beb115948d8a 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);