diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:20:24 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:20:24 +0000 |
| commit | 94f3fdc4fbc4206a999f9b1e55f548728253f8cb (patch) | |
| tree | eedffd881a02689b746d631f9bad31b99b365d2d /libc/string/wcspbrk.c | |
| parent | e91056b7f1ab59d69cfe1611eb9db21c806c0a26 (diff) | |
| download | uClibc-alpine-94f3fdc4fbc4206a999f9b1e55f548728253f8cb.tar.bz2 uClibc-alpine-94f3fdc4fbc4206a999f9b1e55f548728253f8cb.tar.xz | |
Copy from trunk.
Diffstat (limited to 'libc/string/wcspbrk.c')
| -rw-r--r-- | libc/string/wcspbrk.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcspbrk.c b/libc/string/wcspbrk.c new file mode 100644 index 000000000..c1b5d0bce --- /dev/null +++ b/libc/string/wcspbrk.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_strpbrk +#define WANT_WIDE +#define Wstrpbrk __wcspbrk + +#include "wstring.c" + +strong_alias(__wcspbrk, wcspbrk) + +#undef L_strpbrk |
