From e6d329961fa06384125a7c14ccc3066885f5be96 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 13 Jun 2003 05:19:10 +0000 Subject: Update. 2003-06-12 Ulrich Drepper * wcsmbs/wchar.h: Define wint_t in std namespace, too [PR libc/5034]. --- wcsmbs/wchar.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'wcsmbs') diff --git a/wcsmbs/wchar.h b/wcsmbs/wchar.h index 8cdd79bb70..8bab0ddd7b 100644 --- a/wcsmbs/wchar.h +++ b/wcsmbs/wchar.h @@ -59,8 +59,13 @@ # define _WINT_T typedef unsigned int wint_t; #else -# ifdef __USE_GNU -__USING_NAMESPACE_STD(wint_t) +/* Work around problems with the file which doesn't put + wint_t in the std namespace. */ +# if defined __cplusplus && defined _GLIBCPP_USE_NAMESPACES \ + && defined __WINT_TYPE__ +__BEGIN_NAMESPACE_STD +typedef __WINT_TYPE__ wint_t; +__END_NAMESPACE_STD # endif #endif -- cgit v1.2.1