xref: /aosp_15_r20/external/libcxx/include/support/fuchsia/xlocale.h (revision 58b9f456b02922dfdb1fad8a988d5fd8765ecb80)
1*58b9f456SAndroid Build Coastguard Worker // -*- C++ -*-
2*58b9f456SAndroid Build Coastguard Worker //===------------------- support/fuchsia/xlocale.h ------------------------===//
3*58b9f456SAndroid Build Coastguard Worker //
4*58b9f456SAndroid Build Coastguard Worker //                     The LLVM Compiler Infrastructure
5*58b9f456SAndroid Build Coastguard Worker //
6*58b9f456SAndroid Build Coastguard Worker // This file is dual licensed under the MIT and the University of Illinois Open
7*58b9f456SAndroid Build Coastguard Worker // Source Licenses. See LICENSE.TXT for details.
8*58b9f456SAndroid Build Coastguard Worker //
9*58b9f456SAndroid Build Coastguard Worker //===----------------------------------------------------------------------===//
10*58b9f456SAndroid Build Coastguard Worker 
11*58b9f456SAndroid Build Coastguard Worker #ifndef _LIBCPP_SUPPORT_FUCHSIA_XLOCALE_H
12*58b9f456SAndroid Build Coastguard Worker #define _LIBCPP_SUPPORT_FUCHSIA_XLOCALE_H
13*58b9f456SAndroid Build Coastguard Worker 
14*58b9f456SAndroid Build Coastguard Worker #if defined(__Fuchsia__)
15*58b9f456SAndroid Build Coastguard Worker 
16*58b9f456SAndroid Build Coastguard Worker #include <cstdlib>
17*58b9f456SAndroid Build Coastguard Worker #include <cwchar>
18*58b9f456SAndroid Build Coastguard Worker #include <support/xlocale/__posix_l_fallback.h>
19*58b9f456SAndroid Build Coastguard Worker #include <support/xlocale/__strtonum_fallback.h>
20*58b9f456SAndroid Build Coastguard Worker 
21*58b9f456SAndroid Build Coastguard Worker #endif // defined(__Fuchsia__)
22*58b9f456SAndroid Build Coastguard Worker 
23*58b9f456SAndroid Build Coastguard Worker #endif // _LIBCPP_SUPPORT_FUCHSIA_XLOCALE_H
24