47 lines · c
1// -*- C++ -*-2//===----------------------------------------------------------------------===//3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9 10#ifndef _LIBCPP___CXX03_LOCALE_H11#define _LIBCPP___CXX03_LOCALE_H12 13/*14 locale.h synopsis15 16Macros:17 18 LC_ALL19 LC_COLLATE20 LC_CTYPE21 LC_MONETARY22 LC_NUMERIC23 LC_TIME24 25Types:26 27 lconv28 29Functions:30 31 setlocale32 localeconv33 34*/35 36#include <__cxx03/__config>37 38#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)39# pragma GCC system_header40#endif41 42#if __has_include_next(<locale.h>)43# include_next <locale.h>44#endif45 46#endif // _LIBCPP___CXX03_LOCALE_H47