diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:20:40 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-17 02:20:40 +0000 |
commit | 8b50f4596cc9b5afd7eb97a9d36c2084ccb17f26 (patch) | |
tree | 756c259609cdb12e127147af17501e75d311ffa6 /libc | |
parent | 94f3fdc4fbc4206a999f9b1e55f548728253f8cb (diff) | |
download | uClibc-alpine-8b50f4596cc9b5afd7eb97a9d36c2084ccb17f26.tar.bz2 uClibc-alpine-8b50f4596cc9b5afd7eb97a9d36c2084ccb17f26.tar.xz |
Copy from trunk.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/string/wcsspn.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/string/wcsspn.c b/libc/string/wcsspn.c new file mode 100644 index 000000000..9d4aaa7cf --- /dev/null +++ b/libc/string/wcsspn.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_strspn +#define WANT_WIDE +#define Wstrspn __wcsspn + +#include "wstring.c" + +strong_alias(__wcsspn, wcsspn) + +#undef L_strspn |