219N/A #include <clocale> // for localeconv
219N/A // For g++ libstdc++ parsing see num_get<chartype,initer>::_M_extract_float
219N/A- char point_char = use_facet< numpunct<char> >(loc).decimal_point();
219N/A+#ifndef _RWSTD_NO_TEMPLATE_ON_RETURN_TYPE
219N/A+ use_facet< numpunct<char> >(loc)
219N/A+ use_facet(loc,(numpunct<char>*)0)
219N/A const char *point = lconv_point;
219N/A char point_char = *point;
219N/A- const ctype<char>& ct = use_facet< ctype<char> >(loc);
219N/A+ const ctype<char>& ct =
219N/A+#ifndef _RWSTD_NO_TEMPLATE_ON_RETURN_TYPE
219N/A+ use_facet< ctype<char> >(loc);
219N/A+ use_facet(loc,(ctype<char>*)0);
219N/A #define cxx_isspace(c) (
ct.is(ctype_base::space,(c)))
219N/A #define cxx_isspace(c) isspace(c)