Update test-gencat.sh and tst-langinfo.sh
[glibc.git] / conform / data / stdint.h-data
blob99bdf22ac6ceff38004146befd1b5f2030502dc4
1 #if !defined ISO && !defined POSIX && !defined XPG3 && !defined XPG4 && !defined UNIX98
2 type int8_t
3 type int16_t
4 type int32_t
5 type int64_t
6 type uint8_t
7 type uint16_t
8 type uint32_t
9 type uint64_t
11 type int_least8_t
12 type int_least16_t
13 type int_least32_t
14 type int_least64_t
15 type uint_least8_t
16 type uint_least16_t
17 type uint_least32_t
18 type uint_least64_t
20 type int_fast8_t
21 type int_fast16_t
22 type int_fast32_t
23 type int_fast64_t
24 type uint_fast8_t
25 type uint_fast16_t
26 type uint_fast32_t
27 type uint_fast64_t
29 type intptr_t
30 type uintptr_t
32 type intmax_t
33 type uintmax_t
35 constant INT8_MIN == -128
36 constant INT8_MAX == 127
37 constant INT16_MIN == -32768
38 constant INT16_MAX == 32767
39 constant INT32_MIN == -2147483647-1
40 constant INT32_MAX == 2147483647
41 constant INT64_MIN == -9223372036854775807LL-1
42 constant INT64_MAX == 9223372036854775807LL
44 constant UINT8_MAX == 255
45 constant UINT16_MAX == 65535
46 constant UINT32_MAX == 4294967295U
47 constant UINT64_MAX == 18446744073709551615ULL
49 constant INT_LEAST8_MIN <= -128
50 constant INT_LEAST8_MAX >= 127
51 constant INT_LEAST16_MIN <= -32768
52 constant INT_LEAST16_MAX >= 32767
53 constant INT_LEAST32_MIN <= -2147483647-1
54 constant INT_LEAST32_MAX >= 2147483647
55 constant INT_LEAST64_MIN <= -9223372036854775807LL-1
56 constant INT_LEAST64_MAX >= 9223372036854775807LL
58 constant UINT_LEAST8_MAX >= 255
59 constant UINT_LEAST16_MAX >= 65535
60 constant UINT_LEAST32_MAX >= 4294967295U
61 constant UINT_LEAST64_MAX >= 18446744073709551615ULL
63 constant INT_FAST8_MIN <= -128
64 constant INT_FAST8_MAX >= 127
65 constant INT_FAST16_MIN <= -32768
66 constant INT_FAST16_MAX >= 32767
67 constant INT_FAST32_MIN <= -2147483647-1
68 constant INT_FAST32_MAX >= 2147483647
69 constant INT_FAST64_MIN <= -9223372036854775807LL-1
70 constant INT_FAST64_MAX >= 9223372036854775807LL
72 constant UINT_FAST8_MAX >= 255
73 constant UINT_FAST16_MAX >= 65535
74 constant UINT_FAST32_MAX >= 4294967295U
75 constant UINT_FAST64_MAX >= 18446744073709551615ULL
77 constant INTPTR_MIN <= -32768
78 constant INTPTR_MAX >= 32767
80 constant UINTPTR_MAX >= 65535
82 constant INTMAX_MIN <= -9223372036854775807LL-1
83 constant INTMAX_MAX >= 9223372036854775807LL
85 constant UINTMAX_MAX >= 18446744073709551615ULL
87 constant PTRDIFF_MIN <= -65535
88 constant PTRDIFF_MAX >= 65535
90 constant SIG_ATOMIC_MIN <= -127
91 constant SIG_ATOMIC_MAX >= 127
93 constant SIZE_MAX >= 65535
95 constant WCHAR_MIN <= -127
96 constant WCHAR_MAX >= 127
98 constant WINT_MIN <= -127
99 constant WINT_MAX >= 127
101 macro INT8_C
102 macro INT16_C
103 macro INT32_C
104 macro INT64_C
105 macro UINT8_C
106 macro UINT16_C
107 macro UINT32_C
108 macro UINT64_C
109 macro INTMAX_C
110 macro UINTMAX_C
112 // The following expressions are not entirely correct but the current
113 // fnamtch implementation doesn't grok the right form.
114 allow INT*
115 allow UINT*
116 #endif