[haiku-commits] r37669 - haiku/trunk/headers/posix

  • From: zooey@xxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 21 Jul 2010 22:11:48 +0200 (CEST)

Author: zooey
Date: 2010-07-21 22:11:48 +0200 (Wed, 21 Jul 2010)
New Revision: 37669
Changeset: http://dev.haiku-os.org/changeset/37669

Modified:
   haiku/trunk/headers/posix/wchar.h
Log:
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).

Modified: haiku/trunk/headers/posix/wchar.h
===================================================================
--- haiku/trunk/headers/posix/wchar.h   2010-07-21 18:22:34 UTC (rev 37668)
+++ haiku/trunk/headers/posix/wchar.h   2010-07-21 20:11:48 UTC (rev 37669)
@@ -49,7 +49,7 @@
 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);
 


Other related posts:

  • » [haiku-commits] r37669 - haiku/trunk/headers/posix - zooey