time: fix incorrect DST offset when using POSIX timezones without DST
[musl.git] / src / string / wcpcpy.c
blobef401343323b43c6216aa5c6621a8eb43486374b
1 #include <wchar.h>
3 wchar_t *wcpcpy(wchar_t *restrict d, const wchar_t *restrict s)
5 return wcscpy(d, s) + wcslen(s);