Home | History | Annotate | Download | only in include
      1 // -*- C++ -*-
      2 //===---------------------------- locale.h --------------------------------===//
      3 //
      4 //                     The LLVM Compiler Infrastructure
      5 //
      6 // This file is dual licensed under the MIT and the University of Illinois Open
      7 // Source Licenses. See LICENSE.TXT for details.
      8 //
      9 //===----------------------------------------------------------------------===//
     10 
     11 #ifndef _LIBCPP_LOCALE_H
     12 #define _LIBCPP_LOCALE_H
     13 
     14 /*
     15     locale.h synopsis
     16 
     17 Macros:
     18 
     19     LC_ALL
     20     LC_COLLATE
     21     LC_CTYPE
     22     LC_MONETARY
     23     LC_NUMERIC
     24     LC_TIME
     25 
     26 Types:
     27 
     28     lconv
     29 
     30 Functions:
     31 
     32    setlocale
     33    localeconv
     34 
     35 */
     36 
     37 #include <__config>
     38 
     39 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
     40 #pragma GCC system_header
     41 #endif
     42 
     43 #include_next <locale.h>
     44 
     45 #endif  // _LIBCPP_LOCALE_H
     46