diff options
Diffstat (limited to 'lib/libc/string/stpcpy.c')
-rw-r--r-- | lib/libc/string/stpcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <string.h> char * -stpcpy(char * to, const char * from) +stpcpy(char * __restrict to, const char * __restrict from) { for (; (*to = *from); ++from, ++to); |