xlocale.h 771 B

1234567891011121314151617181920212223
  1. //===----------------------------------------------------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef _LIBCPP___SUPPORT_NEWLIB_XLOCALE_H
  9. #define _LIBCPP___SUPPORT_NEWLIB_XLOCALE_H
  10. #if defined(_NEWLIB_VERSION)
  11. #if !defined(__NEWLIB__) || __NEWLIB__ < 2 || \
  12. __NEWLIB__ == 2 && __NEWLIB_MINOR__ < 5
  13. #include <__support/xlocale/__nop_locale_mgmt.h>
  14. #include <__support/xlocale/__posix_l_fallback.h>
  15. #include <__support/xlocale/__strtonum_fallback.h>
  16. #endif
  17. #endif // _NEWLIB_VERSION
  18. #endif