Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/c++/v1/__cxx03/climits is written in an unsupported language. File is not indexed.

0001 // -*- C++ -*-
0002 //===----------------------------------------------------------------------===//
0003 //
0004 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0005 // See https://llvm.org/LICENSE.txt for license information.
0006 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0007 //
0008 //===----------------------------------------------------------------------===//
0009 
0010 #ifndef _LIBCPP___CXX03_CLIMITS
0011 #define _LIBCPP___CXX03_CLIMITS
0012 
0013 /*
0014     climits synopsis
0015 
0016 Macros:
0017 
0018     CHAR_BIT
0019     SCHAR_MIN
0020     SCHAR_MAX
0021     UCHAR_MAX
0022     CHAR_MIN
0023     CHAR_MAX
0024     MB_LEN_MAX
0025     SHRT_MIN
0026     SHRT_MAX
0027     USHRT_MAX
0028     INT_MIN
0029     INT_MAX
0030     UINT_MAX
0031     LONG_MIN
0032     LONG_MAX
0033     ULONG_MAX
0034     LLONG_MIN   // C99
0035     LLONG_MAX   // C99
0036     ULLONG_MAX  // C99
0037 
0038 */
0039 
0040 #include <__cxx03/__config>
0041 
0042 #include <limits.h>
0043 
0044 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0045 #  pragma GCC system_header
0046 #endif
0047 
0048 #endif // _LIBCPP___CXX03_CLIMITS