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
9#ifndef _LIBCPP___SUPPORT_NEWLIB_XLOCALE_H
10#define _LIBCPP___SUPPORT_NEWLIB_XLOCALE_H
11
12#if defined(_NEWLIB_VERSION)
13
14#if !defined(__NEWLIB__) || __NEWLIB__ < 2 || \
15    __NEWLIB__ == 2 && __NEWLIB_MINOR__ < 5
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
20
21#endif // _NEWLIB_VERSION
22
23#endif
24