X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstring%2Fwmemcpy.c;h=55a8e1d8caec2b966101ce713ae177b365956253;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hp=330e37c7a960209d00602dd72f80a0e12a0a1951;hpb=bac03cdde1137c16b4c194e137310e2748661dcc;p=musl diff --git a/src/string/wmemcpy.c b/src/string/wmemcpy.c index 330e37c7..55a8e1d8 100644 --- a/src/string/wmemcpy.c +++ b/src/string/wmemcpy.c @@ -1,7 +1,7 @@ #include #include -wchar_t *wmemcpy(wchar_t *d, const wchar_t *s, size_t n) +wchar_t *wmemcpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n) { wchar_t *a = d; while (n--) *d++ = *s++;