diff options
author | Jeffrey Hsu <hsu@FreeBSD.org> | 2003-02-10 00:36:27 +0000 |
---|---|---|
committer | Jeffrey Hsu <hsu@FreeBSD.org> | 2003-02-10 00:36:27 +0000 |
commit | 93eb73aa488637e0761a8e413b308bc3006d0564 (patch) | |
tree | 5f88293aa12629383c47bbf7acd276f5931273cb /sys/libkern/strcpy.c | |
parent | ffb37f33f84e7633774fdd776ec5a527d44c4c43 (diff) |
Notes
Diffstat (limited to 'sys/libkern/strcpy.c')
-rw-r--r-- | sys/libkern/strcpy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/libkern/strcpy.c b/sys/libkern/strcpy.c index 3aed2d0a30eb1..dd25c608b6601 100644 --- a/sys/libkern/strcpy.c +++ b/sys/libkern/strcpy.c @@ -36,9 +36,7 @@ #include <sys/libkern.h> char * -strcpy(to, from) - register char *to; - register const char *from; +strcpy(char * __restrict to, const char * __restrict from) { char *save = to; |