Add missing definition for wcsstr. This was preventing clucene from building with wide chars enabled.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32038 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2009-07-31 22:16:58 +00:00
parent 7a97958b0b
commit 2252911973
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ extern wchar_t *wcsrchr(const wchar_t *, wchar_t);
extern size_t wcsrtombs(char *dst, const wchar_t **src, size_t len,
mbstate_t *ps);
extern size_t wcsspn(const wchar_t *, const wchar_t *);
extern wchar_t *wcsstr(const wchar_t *, const wchar_t *);
extern double wcstod(const wchar_t *, wchar_t **);
extern float wcstof(const wchar_t *, wchar_t **);
extern wchar_t *wcstok(wchar_t *, const wchar_t *, wchar_t **);