diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:23:00 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:23:00 +0000 |
| commit | 2c08856b9620c545c53fe94f2b2bbc4dd612861f (patch) | |
| tree | 61dfcdd0ba863d82b401cf835b4191464d880000 /libc/string | |
| parent | cf2f7a99cdf11f313a1c93f934832b7b50e3df38 (diff) | |
| download | uClibc-alpine-2c08856b9620c545c53fe94f2b2bbc4dd612861f.tar.bz2 uClibc-alpine-2c08856b9620c545c53fe94f2b2bbc4dd612861f.tar.xz | |
Copy from trunk.
Diffstat (limited to 'libc/string')
| -rw-r--r-- | libc/string/wcsncat.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcsncat.c b/libc/string/wcsncat.c new file mode 100644 index 000000000..33e27e943 --- /dev/null +++ b/libc/string/wcsncat.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_strncat +#define WANT_WIDE +#define Wstrncat __wcsncat + +#include "wstring.c" + +strong_alias(__wcsncat, wcsncat) + +#undef L_strncat |
