llvm-project
48 строк · 909.0 Байт
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-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_CLIMITS
11#define _LIBCPP_CLIMITS
12
13/*
14climits synopsis
15
16Macros:
17
18CHAR_BIT
19SCHAR_MIN
20SCHAR_MAX
21UCHAR_MAX
22CHAR_MIN
23CHAR_MAX
24MB_LEN_MAX
25SHRT_MIN
26SHRT_MAX
27USHRT_MAX
28INT_MIN
29INT_MAX
30UINT_MAX
31LONG_MIN
32LONG_MAX
33ULONG_MAX
34LLONG_MIN // C99
35LLONG_MAX // C99
36ULLONG_MAX // C99
37
38*/
39
40#include <__config>
41
42#include <limits.h>
43
44#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
45# pragma GCC system_header
46#endif
47
48#endif // _LIBCPP_CLIMITS
49