diff options
| author | David Schultz <das@FreeBSD.org> | 2009-02-28 06:05:37 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2009-02-28 06:05:37 +0000 |
| commit | 9c5cb6d8ae38a9fd39e344721a729d05cf121ce3 (patch) | |
| tree | acc0f18f76aff1248966d3248c7ca1598d14f904 | |
| parent | 69099ba2ec8b01fe51a5c69b98990cde406c5ab8 (diff) | |
Notes
| -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 0bee74629057..beb115948d8a 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); |
