diff options
| author | Robert Drehmel <robert@FreeBSD.org> | 2002-08-14 22:59:22 +0000 |
|---|---|---|
| committer | Robert Drehmel <robert@FreeBSD.org> | 2002-08-14 22:59:22 +0000 |
| commit | ad906968153f7b35f2e92b49936a22f44d5aa0c0 (patch) | |
| tree | 9df4940afbb539047f1629f3d07676734213430e /lib/libc/string/strcpy.c | |
| parent | d542f511a0b87b12a2b2459f8995921449f86c82 (diff) | |
Notes
Diffstat (limited to 'lib/libc/string/strcpy.c')
| -rw-r--r-- | lib/libc/string/strcpy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/string/strcpy.c b/lib/libc/string/strcpy.c index 590a5fbfe61c..56bc1a87561b 100644 --- a/lib/libc/string/strcpy.c +++ b/lib/libc/string/strcpy.c @@ -40,9 +40,7 @@ __FBSDID("$FreeBSD$"); #include <string.h> char * -strcpy(to, from) - char *to; - const char *from; +strcpy(char *__restrict to, const char *__restrict from) { char *save = to; |
