2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
8 #include <wchar_private.h>
12 __wmempcpy(wchar_t* dest
, const wchar_t* src
, size_t count
)
14 memcpy(dest
, src
, count
* sizeof(wchar_t));
20 B_DEFINE_WEAK_ALIAS(__wmempcpy
, wmempcpy
);