2 * Copyright (C) 2002 Manuel Novoa III
3 * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
5 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
11 # define Wmemmove wmemmove
13 # define Wmemmove memmove
16 Wvoid
*Wmemmove(Wvoid
*s1
, const Wvoid
*s2
, size_t n
)
18 register Wchar
*s
= (Wchar
*) s1
;
19 register const Wchar
*p
= (const Wchar
*) s2
;
37 libc_hidden_def(memmove
)