diff options
Diffstat (limited to 'src/string/strcpy.c')
-rw-r--r-- | src/string/strcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/strcpy.c b/src/string/strcpy.c index 7675e9ce..f7e3ba38 100644 --- a/src/string/strcpy.c +++ b/src/string/strcpy.c @@ -2,7 +2,7 @@ char *__stpcpy(char *, const char *); -char *strcpy(char *dest, const char *src) +char *strcpy(char *restrict dest, const char *restrict src) { #if 1 __stpcpy(dest, src); |