xlocale.h 725 B

12345678910111213141516171819202122232425
  1. //===----------------------------------------------------------------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is dual licensed under the MIT and the University of Illinois Open
  6. // Source Licenses. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP_SUPPORT_NEWLIB_XLOCALE_H
  10. #define _LIBCPP_SUPPORT_NEWLIB_XLOCALE_H
  11. #if defined(_NEWLIB_VERSION)
  12. #include <cstdlib>
  13. #include <clocale>
  14. #include <cwctype>
  15. #include <ctype.h>
  16. #include <support/xlocale/__nop_locale_mgmt.h>
  17. #include <support/xlocale/__posix_l_fallback.h>
  18. #include <support/xlocale/__strtonum_fallback.h>
  19. #endif // _NEWLIB_VERSION
  20. #endif