123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef _LIBCPP_CLOCALE
- #define _LIBCPP_CLOCALE
- #include <__config>
- #if !defined(_LIBCPP_SGX_CONFIG)
- #include <locale.h>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_STD
- using ::lconv;
- #ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS
- using ::setlocale;
- #endif
- using ::localeconv;
- _LIBCPP_END_NAMESPACE_STD
- #endif
- #endif
|