diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:25:07 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:25:07 +0000 |
commit | 447b2cfedaf52b09241979ef0d9f34ce79dbe272 (patch) | |
tree | 7662abad732988c73ee04c8fb4d07222580ad31e /libc | |
parent | 040c7690807bfcb4f2dc6aa0c430f5e3217f2cb9 (diff) | |
download | uClibc-alpine-447b2cfedaf52b09241979ef0d9f34ce79dbe272.tar.bz2 uClibc-alpine-447b2cfedaf52b09241979ef0d9f34ce79dbe272.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/string/wcscat.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcscat.c b/libc/string/wcscat.c new file mode 100644 index 000000000..b2f189662 --- /dev/null +++ b/libc/string/wcscat.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_strcat +#define WANT_WIDE +#define Wstrcat __wcscat + +#include "wstring.c" + +strong_alias(__wcscat, wcscat) + +#undef L_strcat |