summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-11-17 02:23:58 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-11-17 02:23:58 +0000
commit591503c2876982b34b51323ffe64c202b8002798 (patch)
tree9e4838f57abce76702c72e965f55d7872690cdd4
parent92bc02da5ee22d9dfd9e7f24cff131fa2d74e4a3 (diff)
downloaduClibc-alpine-591503c2876982b34b51323ffe64c202b8002798.tar.bz2
uClibc-alpine-591503c2876982b34b51323ffe64c202b8002798.tar.xz
Copy from trunk.
-rw-r--r--libc/string/wmemmove.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wmemmove.c b/libc/string/wmemmove.c
new file mode 100644
index 000000000..f7ba41fa5
--- /dev/null
+++ b/libc/string/wmemmove.c
@@ -0,0 +1,15 @@
+/*
+ * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#define L_memmove
+#define WANT_WIDE
+#define Wmemmove __wmemmove
+
+#include "wstring.c"
+
+strong_alias(__wmemmove, wmemmove)
+
+#undef L_memmove