diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:24:31 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:24:31 +0000 |
commit | 8b941975786e2c685c243fd2393cd396ba00641a (patch) | |
tree | b6ead6aa1cec48ee9379f101347bc4916246e9f4 /libc/string/wcscpy.c | |
parent | 9f4eba899048a9adc72eae59e3b39474e06cab7f (diff) | |
download | uClibc-alpine-8b941975786e2c685c243fd2393cd396ba00641a.tar.bz2 uClibc-alpine-8b941975786e2c685c243fd2393cd396ba00641a.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc/string/wcscpy.c')
-rw-r--r-- | libc/string/wcscpy.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcscpy.c b/libc/string/wcscpy.c new file mode 100644 index 000000000..bf5ba0da2 --- /dev/null +++ b/libc/string/wcscpy.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_strcpy +#define WANT_WIDE +#define Wstrcpy __wcscpy + +#include "wstring.c" + +strong_alias(__wcscpy, wcscpy) + +#undef L_strcpy |