diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:24:36 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:24:36 +0000 |
| commit | 3c2d2f74656f12172862c5a5dbdcd068ccbc81a8 (patch) | |
| tree | e672e58f98d1134172c5c65b14aace86823fb5ac /libc/string/wcsrchr.c | |
| parent | 8b941975786e2c685c243fd2393cd396ba00641a (diff) | |
| download | uClibc-alpine-3c2d2f74656f12172862c5a5dbdcd068ccbc81a8.tar.bz2 uClibc-alpine-3c2d2f74656f12172862c5a5dbdcd068ccbc81a8.tar.xz | |
Copy from trunk.
Diffstat (limited to 'libc/string/wcsrchr.c')
| -rw-r--r-- | libc/string/wcsrchr.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcsrchr.c b/libc/string/wcsrchr.c new file mode 100644 index 000000000..256e2bdd1 --- /dev/null +++ b/libc/string/wcsrchr.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_strrchr +#define WANT_WIDE +#define Wstrrchr __wcsrchr + +#include "wstring.c" + +strong_alias(__wcsrchr, wcsrchr) + +#undef L_strrchr |
