Home | History | Annotate | Line # | Download | only in include
climits revision 1.1.1.1
      1  1.1  joerg // -*- C++ -*-
      2  1.1  joerg //===--------------------------- climits ----------------------------------===//
      3  1.1  joerg //
      4  1.1  joerg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
      5  1.1  joerg // See https://llvm.org/LICENSE.txt for license information.
      6  1.1  joerg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
      7  1.1  joerg //
      8  1.1  joerg //===----------------------------------------------------------------------===//
      9  1.1  joerg 
     10  1.1  joerg #ifndef _LIBCPP_CLIMITS
     11  1.1  joerg #define _LIBCPP_CLIMITS
     12  1.1  joerg 
     13  1.1  joerg /*
     14  1.1  joerg     climits synopsis
     15  1.1  joerg 
     16  1.1  joerg Macros:
     17  1.1  joerg 
     18  1.1  joerg     CHAR_BIT
     19  1.1  joerg     SCHAR_MIN
     20  1.1  joerg     SCHAR_MAX
     21  1.1  joerg     UCHAR_MAX
     22  1.1  joerg     CHAR_MIN
     23  1.1  joerg     CHAR_MAX
     24  1.1  joerg     MB_LEN_MAX
     25  1.1  joerg     SHRT_MIN
     26  1.1  joerg     SHRT_MAX
     27  1.1  joerg     USHRT_MAX
     28  1.1  joerg     INT_MIN
     29  1.1  joerg     INT_MAX
     30  1.1  joerg     UINT_MAX
     31  1.1  joerg     LONG_MIN
     32  1.1  joerg     LONG_MAX
     33  1.1  joerg     ULONG_MAX
     34  1.1  joerg     LLONG_MIN   // C99
     35  1.1  joerg     LLONG_MAX   // C99
     36  1.1  joerg     ULLONG_MAX  // C99
     37  1.1  joerg 
     38  1.1  joerg */
     39  1.1  joerg 
     40  1.1  joerg #include <__config>
     41  1.1  joerg #include <limits.h>
     42  1.1  joerg 
     43  1.1  joerg #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
     44  1.1  joerg #pragma GCC system_header
     45  1.1  joerg #endif
     46  1.1  joerg 
     47  1.1  joerg #endif // _LIBCPP_CLIMITS
     48