https://sourceware.org/pipermail/libc-alpha/2023-May/148435.html
* lib/nstrftime.c (__strftime_internal) [COMPILE_WIDE]:
Use __wmemmove, not wmemmove, to keep in better sync with draft glibc.
+2023-05-23 Paul Eggert <eggert@cs.ucla.edu>
+
+ nstrftime: wmemmove → __wmemmove in glibc part
+ https://sourceware.org/pipermail/libc-alpha/2023-May/148435.html
+ * lib/nstrftime.c (__strftime_internal) [COMPILE_WIDE]:
+ Use __wmemmove, not wmemmove, to keep in better sync with draft glibc.
+
2023-05-22 Bruno Haible <bruno@clisp.org>
git-merge-changelog: Code style changes.
if (len < w)
{
size_t delta = w - len;
- wmemmove (p + delta, p, len);
+ __wmemmove (p + delta, p, len);
wchar_t wc = pad == L_('0') || pad == L_('+') ? L'0' : L' ';
wmemset (p, wc, delta);
}