34 constant INT8_MIN == -128
35 constant INT8_MAX == 127
36 constant INT16_MIN == -32768
37 constant INT16_MAX == 32767
38 constant INT32_MIN == -2147483647-1
39 constant INT32_MAX == 2147483647
40 constant INT64_MIN == -9223372036854775807LL-1
41 constant INT64_MAX == 9223372036854775807LL
43 constant UINT8_MAX == 255
44 constant UINT16_MAX == 65535
45 constant UINT32_MAX == 4294967295U
46 constant UINT64_MAX == 18446744073709551615ULL
48 constant INT_LEAST8_MIN <= -128
49 constant INT_LEAST8_MAX >= 127
50 constant INT_LEAST16_MIN <= -32768
51 constant INT_LEAST16_MAX >= 32767
52 constant INT_LEAST32_MIN <= -2147483647-1
53 constant INT_LEAST32_MAX >= 2147483647
54 constant INT_LEAST64_MIN <= -9223372036854775807LL-1
55 constant INT_LEAST64_MAX >= 9223372036854775807LL
57 constant UINT_LEAST8_MAX >= 255
58 constant UINT_LEAST16_MAX >= 65535
59 constant UINT_LEAST32_MAX >= 4294967295U
60 constant UINT_LEAST64_MAX >= 18446744073709551615ULL
62 constant INT_FAST8_MIN <= -128
63 constant INT_FAST8_MAX >= 127
64 constant INT_FAST16_MIN <= -32768
65 constant INT_FAST16_MAX >= 32767
66 constant INT_FAST32_MIN <= -2147483647-1
67 constant INT_FAST32_MAX >= 2147483647
68 constant INT_FAST64_MIN <= -9223372036854775807LL-1
69 constant INT_FAST64_MAX >= 9223372036854775807LL
71 constant UINT_FAST8_MAX >= 255
72 constant UINT_FAST16_MAX >= 65535
73 constant UINT_FAST32_MAX >= 4294967295U
74 constant UINT_FAST64_MAX >= 18446744073709551615ULL
76 constant INTPTR_MIN <= -32768
77 constant INTPTR_MAX >= 32767
79 constant UINTPTR_MAX >= 65535
81 constant INTMAX_MIN <= -9223372036854775807LL-1
82 constant INTMAX_MAX >= 9223372036854775807LL
84 constant UINTMAX_MAX >= 18446744073709551615ULL
86 constant PTRDIFF_MIN <= -65535
87 constant PTRDIFF_MAX >= 65535
89 constant SIG_ATOMIC_MIN <= -127
90 constant SIG_ATOMIC_MAX >= 127
92 constant SIZE_MAX >= 65535
94 constant WCHAR_MIN <= -127
95 constant WCHAR_MAX >= 127
97 constant WINT_MIN <= -127
98 constant WINT_MAX >= 127
111 // The following expressions are not entirely correct but the current
112 // fnamtch implementation doesn't grok the right form.