From 887a1066e4734de270997c1e60aef83f893a1448 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Wed, 21 Jul 2010 20:11:48 +0000 Subject: [PATCH] Fix that should have been part of r31927: * uncommented fwscanf() in wchar.h to make it available As a result, the next build of gcc4 should be able to detect full support for wchar_t and in turn activate wchar_t-based template types (like std::wstring). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37669 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/wchar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/posix/wchar.h b/headers/posix/wchar.h index 1ca196f6d0..e831212fe9 100644 --- a/headers/posix/wchar.h +++ b/headers/posix/wchar.h @@ -49,7 +49,7 @@ extern wint_t fputwc(wchar_t, FILE *); extern int fputws(const wchar_t *, FILE *); extern int fwide(FILE *, int); extern int fwprintf(FILE *, const wchar_t *, ...); -/*extern int fwscanf(FILE *, const wchar_t *, ...);*/ +extern int fwscanf(FILE *, const wchar_t *, ...); extern wint_t getwc(FILE *); extern wint_t getwchar(void);