diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:18:50 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:18:50 +0000 |
commit | 67f4c47ad1f7d6f1e4a76519f3de48a43c68f98b (patch) | |
tree | 2d95ec4e6df047d0c743f50957ca895ca1cf6e66 /libc/string/strlen.c | |
parent | 73cf443817dc68bcb209571c37f5e92e96ec1bcc (diff) | |
download | uClibc-alpine-67f4c47ad1f7d6f1e4a76519f3de48a43c68f98b.tar.bz2 uClibc-alpine-67f4c47ad1f7d6f1e4a76519f3de48a43c68f98b.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc/string/strlen.c')
-rw-r--r-- | libc/string/strlen.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/string/strlen.c b/libc/string/strlen.c new file mode 100644 index 000000000..282f34d93 --- /dev/null +++ b/libc/string/strlen.c @@ -0,0 +1,14 @@ +/* + * 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 Wstrlen __strlen + +#include "wstring.c" + +strong_alias(__strlen, strlen) + +#undef L_strlen |