diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:21:44 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:21:44 +0000 |
commit | 542b0ea042ad20034b48a39076f7b0868e6d69d8 (patch) | |
tree | 20c1e141e657ba921cd046402ab1d25beee7e19e /libc/string/wcsstr.c | |
parent | 6fda4bc6e2566f6cb7c7628f7e4635e84dabfccc (diff) | |
download | uClibc-alpine-542b0ea042ad20034b48a39076f7b0868e6d69d8.tar.bz2 uClibc-alpine-542b0ea042ad20034b48a39076f7b0868e6d69d8.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc/string/wcsstr.c')
-rw-r--r-- | libc/string/wcsstr.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/string/wcsstr.c b/libc/string/wcsstr.c new file mode 100644 index 000000000..0f4280f1a --- /dev/null +++ b/libc/string/wcsstr.c @@ -0,0 +1,17 @@ +/* + * 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_strstr +#define WANT_WIDE +#define Wstrstr __wcsstr + +#include "wstring.c" + +strong_alias(__wcsstr, wcsstr) + +weak_alias(wcsstr, wcswcs) + +#undef L_strstr |