diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:25:27 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:25:27 +0000 |
| commit | a17cc6de11598acf287e633cd7915b18a2686902 (patch) | |
| tree | 4b7bbf87d77d293012d8eb03469dfc52f75f3ad5 /libc | |
| parent | 1221daaf062cba1e0d68b96b17965a5179a7e02b (diff) | |
| download | uClibc-alpine-a17cc6de11598acf287e633cd7915b18a2686902.tar.bz2 uClibc-alpine-a17cc6de11598acf287e633cd7915b18a2686902.tar.xz | |
Copy from trunk.
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/string/wcslen.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcslen.c b/libc/string/wcslen.c new file mode 100644 index 000000000..746abf7d5 --- /dev/null +++ b/libc/string/wcslen.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_strlen +#define WANT_WIDE +#define Wstrlen __wcslen + +#include "wstring.c" + +strong_alias(__wcslen, wcslen) + +#undef L_strlen |
