X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstring%2Fstpcpy.c;h=da96f215cf4228cc68e4eeccd3aeabdf0e1be223;hp=10ca4933d2bad8ac2c3320d6e0cd18f6e83a0e36;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 diff --git a/src/string/stpcpy.c b/src/string/stpcpy.c index 10ca4933..da96f215 100644 --- a/src/string/stpcpy.c +++ b/src/string/stpcpy.c @@ -9,7 +9,7 @@ #define HIGHS (ONES * (UCHAR_MAX/2+1)) #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) -char *__stpcpy(char *d, const char *s) +char *__stpcpy(char *restrict d, const char *restrict s) { size_t *wd; const size_t *ws;