climits 894 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // -*- C++ -*-
  2. //===--------------------------- climits ----------------------------------===//
  3. //
  4. // The LLVM Compiler Infrastructure
  5. //
  6. // This file is dual licensed under the MIT and the University of Illinois Open
  7. // Source Licenses. See LICENSE.TXT for details.
  8. //
  9. //===----------------------------------------------------------------------===//
  10. #ifndef _LIBCPP_CLIMITS
  11. #define _LIBCPP_CLIMITS
  12. /*
  13. climits synopsis
  14. Macros:
  15. CHAR_BIT
  16. SCHAR_MIN
  17. SCHAR_MAX
  18. UCHAR_MAX
  19. CHAR_MIN
  20. CHAR_MAX
  21. MB_LEN_MAX
  22. SHRT_MIN
  23. SHRT_MAX
  24. USHRT_MAX
  25. INT_MIN
  26. INT_MAX
  27. UINT_MAX
  28. LONG_MIN
  29. LONG_MAX
  30. ULONG_MAX
  31. LLONG_MIN // C99
  32. LLONG_MAX // C99
  33. ULLONG_MAX // C99
  34. */
  35. #include <__config>
  36. #include <limits.h>
  37. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  38. #pragma GCC system_header
  39. #endif
  40. #endif // _LIBCPP_CLIMITS