diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
commit | 58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3 (patch) | |
tree | ee19d604b38f08d225b97c81a641deba71f33d6b /lib/libc/string/strcpy.c | |
parent | 00f9b682956d9eda39f36dd9291d4313fc75025a (diff) |
Notes
Diffstat (limited to 'lib/libc/string/strcpy.c')
-rw-r--r-- | lib/libc/string/strcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strcpy.c b/lib/libc/string/strcpy.c index 56bc1a87561b..630ae23e799c 100644 --- a/lib/libc/string/strcpy.c +++ b/lib/libc/string/strcpy.c @@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$"); #include <string.h> char * -strcpy(char *__restrict to, const char *__restrict from) +strcpy(char * __restrict to, const char * __restrict from) { char *save = to; |