X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstring%2Fstrcpy.c;h=f7e3ba38c16e3e69395f85dcdd6c23bb20797a6c;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hp=7675e9cea22ebd5f5c91603e3bc315639e0c5f75;hpb=bac03cdde1137c16b4c194e137310e2748661dcc;p=musl 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);