brintos

brintos / llvm-project-archived public Read only

0
0
Text · 941 B · 2c6fe5a Raw
49 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___CXX03_CLIMITS11#define _LIBCPP___CXX03_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#include <__cxx03/__config>41 42#include <limits.h>43 44#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)45#  pragma GCC system_header46#endif47 48#endif // _LIBCPP___CXX03_CLIMITS49