diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:17:46 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:17:46 +0000 |
commit | da828fa58d63c9930daa17a8865c1cc4c114ab56 (patch) | |
tree | 0d9d8430eb3e24142f66b1cac4b71b8a6e24159c /libc | |
parent | c7aee8d81b9c62fe1e99a1daf10423caebb35a0c (diff) | |
download | uClibc-alpine-da828fa58d63c9930daa17a8865c1cc4c114ab56.tar.bz2 uClibc-alpine-da828fa58d63c9930daa17a8865c1cc4c114ab56.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/string/wmempcpy.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wmempcpy.c b/libc/string/wmempcpy.c new file mode 100644 index 000000000..35b4ff6a5 --- /dev/null +++ b/libc/string/wmempcpy.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_mempcpy +#define WANT_WIDE +#define Wmempcpy __wmempcpy + +#include "wstring.c" + +strong_alias(__wmempcpy, wmempcpy) + +#undef L_mempcpy |