From 2252911973669dbaf7b05c774a443e27c3ee2e95 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 31 Jul 2009 22:16:58 +0000 Subject: [PATCH] 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 --- headers/posix/wchar.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/posix/wchar.h b/headers/posix/wchar.h index 19b574a54c..65b1298087 100644 --- a/headers/posix/wchar.h +++ b/headers/posix/wchar.h @@ -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 **);