44#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) 
   46extern "C" __typeof(nl_langinfo_l) __nl_langinfo_l;
 
   47extern "C" __typeof(strcoll_l) __strcoll_l;
 
   48extern "C" __typeof(strftime_l) __strftime_l;
 
   49extern "C" __typeof(strtod_l) __strtod_l;
 
   50extern "C" __typeof(strtof_l) __strtof_l;
 
   51extern "C" __typeof(strtold_l) __strtold_l;
 
   52extern "C" __typeof(strxfrm_l) __strxfrm_l;
 
   53extern "C" __typeof(newlocale) __newlocale;
 
   54extern "C" __typeof(freelocale) __freelocale;
 
   55extern "C" __typeof(duplocale) __duplocale;
 
   56extern "C" __typeof(uselocale) __uselocale;
 
   58#ifdef _GLIBCXX_USE_WCHAR_T 
   59extern "C" __typeof(iswctype_l) __iswctype_l;
 
   60extern "C" __typeof(towlower_l) __towlower_l;
 
   61extern "C" __typeof(towupper_l) __towupper_l;
 
   62extern "C" __typeof(wcscoll_l) __wcscoll_l;
 
   63extern "C" __typeof(wcsftime_l) __wcsftime_l;
 
   64extern "C" __typeof(wcsxfrm_l) __wcsxfrm_l;
 
   65extern "C" __typeof(wctype_l) __wctype_l;
 
   70namespace std _GLIBCXX_VISIBILITY(default)
 
   72_GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   76    Catalog_info(messages_base::catalog __id, 
const char* __domain,
 
   78      : _M_id(__id), _M_domain(strdup(__domain)), _M_locale(__loc)
 
   84    messages_base::catalog _M_id;
 
   89    Catalog_info(
const Catalog_info&);
 
   92    operator=(
const Catalog_info&);
 
   98    Catalogs() : _M_catalog_counter(0) { }
 
  101    messages_base::catalog
 
  102    _M_add(
const char* __domain, locale __l);
 
  105    _M_erase(messages_base::catalog __c);
 
  108    _M_get(messages_base::catalog __c) 
const;
 
  111    mutable __gnu_cxx::__mutex _M_mutex;
 
  112    messages_base::catalog _M_catalog_counter;
 
  113    vector<Catalog_info*> _M_infos;
 
  119_GLIBCXX_END_NAMESPACE_VERSION
 
ISO C++ entities toplevel namespace is std.