brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · a051d96 Raw
54 lines · plain
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_CLIMITS11#define _LIBCPP_CLIMITS12 13/*14    climits synopsis15 16Macros:17 18    CHAR_BIT19    SCHAR_MIN20    SCHAR_MAX21    UCHAR_MAX22    CHAR_MIN23    CHAR_MAX24    MB_LEN_MAX25    SHRT_MIN26    SHRT_MAX27    USHRT_MAX28    INT_MIN29    INT_MAX30    UINT_MAX31    LONG_MIN32    LONG_MAX33    ULONG_MAX34    LLONG_MIN   // C9935    LLONG_MAX   // C9936    ULLONG_MAX  // C9937 38*/39 40#if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)41#  include <__cxx03/climits>42#else43#  include <__config>44 45#  include <limits.h>46 47#  if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)48#    pragma GCC system_header49#  endif50 51#endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)52 53#endif // _LIBCPP_CLIMITS54