6604936b117ca5fa90d64d5c56baa0ee91bed0e3
[debian/tar] / gnu / stdint.in.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Copyright (C) 2001-2002, 2004-2013 Free Software Foundation, Inc.
4    Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood.
5    This file is part of gnulib.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, see <http://www.gnu.org/licenses/>.  */
19
20 /*
21  * ISO C 99 <stdint.h> for platforms that lack it.
22  * <http://www.opengroup.org/susv3xbd/stdint.h.html>
23  */
24
25 #ifndef _@GUARD_PREFIX@_STDINT_H
26
27 #if __GNUC__ >= 3
28 @PRAGMA_SYSTEM_HEADER@
29 #endif
30 @PRAGMA_COLUMNS@
31
32 /* When including a system file that in turn includes <inttypes.h>,
33    use the system <inttypes.h>, not our substitute.  This avoids
34    problems with (for example) VMS, whose <sys/bitypes.h> includes
35    <inttypes.h>.  */
36 #define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H
37
38 /* On Android (Bionic libc), <sys/types.h> includes this file before
39    having defined 'time_t'.  Therefore in this case avoid including
40    other system header files; just include the system's <stdint.h>.
41    Ideally we should test __BIONIC__ here, but it is only defined after
42    <sys/cdefs.h> has been included; hence test __ANDROID__ instead.  */
43 #if defined __ANDROID__ \
44     && defined _SYS_TYPES_H_ && !defined __need_size_t
45 # @INCLUDE_NEXT@ @NEXT_STDINT_H@
46 #else
47
48 /* Get those types that are already defined in other system include
49    files, so that we can "#define int8_t signed char" below without
50    worrying about a later system include file containing a "typedef
51    signed char int8_t;" that will get messed up by our macro.  Our
52    macros should all be consistent with the system versions, except
53    for the "fast" types and macros, which we recommend against using
54    in public interfaces due to compiler differences.  */
55
56 #if @HAVE_STDINT_H@
57 # if defined __sgi && ! defined __c99
58    /* Bypass IRIX's <stdint.h> if in C89 mode, since it merely annoys users
59       with "This header file is to be used only for c99 mode compilations"
60       diagnostics.  */
61 #  define __STDINT_H__
62 # endif
63
64   /* Some pre-C++11 <stdint.h> implementations need this.  */
65 # ifdef __cplusplus
66 #  ifndef __STDC_CONSTANT_MACROS
67 #   define __STDC_CONSTANT_MACROS 1
68 #  endif
69 #  ifndef __STDC_LIMIT_MACROS
70 #   define __STDC_LIMIT_MACROS 1
71 #  endif
72 # endif
73
74   /* Other systems may have an incomplete or buggy <stdint.h>.
75      Include it before <inttypes.h>, since any "#include <stdint.h>"
76      in <inttypes.h> would reinclude us, skipping our contents because
77      _@GUARD_PREFIX@_STDINT_H is defined.
78      The include_next requires a split double-inclusion guard.  */
79 # @INCLUDE_NEXT@ @NEXT_STDINT_H@
80 #endif
81
82 #if ! defined _@GUARD_PREFIX@_STDINT_H && ! defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H
83 #define _@GUARD_PREFIX@_STDINT_H
84
85 /* <sys/types.h> defines some of the stdint.h types as well, on glibc,
86    IRIX 6.5, and OpenBSD 3.8 (via <machine/types.h>).
87    AIX 5.2 <sys/types.h> isn't needed and causes troubles.
88    Mac OS X 10.4.6 <sys/types.h> includes <stdint.h> (which is us), but
89    relies on the system <stdint.h> definitions, so include
90    <sys/types.h> after @NEXT_STDINT_H@.  */
91 #if @HAVE_SYS_TYPES_H@ && ! defined _AIX
92 # include <sys/types.h>
93 #endif
94
95 /* Get SCHAR_MIN, SCHAR_MAX, UCHAR_MAX, INT_MIN, INT_MAX,
96    LONG_MIN, LONG_MAX, ULONG_MAX.  */
97 #include <limits.h>
98
99 #if @HAVE_INTTYPES_H@
100   /* In OpenBSD 3.8, <inttypes.h> includes <machine/types.h>, which defines
101      int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__.
102      <inttypes.h> also defines intptr_t and uintptr_t.  */
103 # include <inttypes.h>
104 #elif @HAVE_SYS_INTTYPES_H@
105   /* Solaris 7 <sys/inttypes.h> has the types except the *_fast*_t types, and
106      the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX.  */
107 # include <sys/inttypes.h>
108 #endif
109
110 #if @HAVE_SYS_BITYPES_H@ && ! defined __BIT_TYPES_DEFINED__
111   /* Linux libc4 >= 4.6.7 and libc5 have a <sys/bitypes.h> that defines
112      int{8,16,32,64}_t and __BIT_TYPES_DEFINED__.  In libc5 >= 5.2.2 it is
113      included by <sys/types.h>.  */
114 # include <sys/bitypes.h>
115 #endif
116
117 #undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H
118
119 /* Minimum and maximum values for an integer type under the usual assumption.
120    Return an unspecified value if BITS == 0, adding a check to pacify
121    picky compilers.  */
122
123 #define _STDINT_MIN(signed, bits, zero) \
124   ((signed) ? (- ((zero) + 1) << ((bits) ? (bits) - 1 : 0)) : (zero))
125
126 #define _STDINT_MAX(signed, bits, zero) \
127   ((signed) \
128    ? ~ _STDINT_MIN (signed, bits, zero) \
129    : /* The expression for the unsigned case.  The subtraction of (signed) \
130         is a nop in the unsigned case and avoids "signed integer overflow" \
131         warnings in the signed case.  */ \
132      ((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1)
133
134 #if !GNULIB_defined_stdint_types
135
136 /* 7.18.1.1. Exact-width integer types */
137
138 /* Here we assume a standard architecture where the hardware integer
139    types have 8, 16, 32, optionally 64 bits.  */
140
141 #undef int8_t
142 #undef uint8_t
143 typedef signed char gl_int8_t;
144 typedef unsigned char gl_uint8_t;
145 #define int8_t gl_int8_t
146 #define uint8_t gl_uint8_t
147
148 #undef int16_t
149 #undef uint16_t
150 typedef short int gl_int16_t;
151 typedef unsigned short int gl_uint16_t;
152 #define int16_t gl_int16_t
153 #define uint16_t gl_uint16_t
154
155 #undef int32_t
156 #undef uint32_t
157 typedef int gl_int32_t;
158 typedef unsigned int gl_uint32_t;
159 #define int32_t gl_int32_t
160 #define uint32_t gl_uint32_t
161
162 /* If the system defines INT64_MAX, assume int64_t works.  That way,
163    if the underlying platform defines int64_t to be a 64-bit long long
164    int, the code below won't mistakenly define it to be a 64-bit long
165    int, which would mess up C++ name mangling.  We must use #ifdef
166    rather than #if, to avoid an error with HP-UX 10.20 cc.  */
167
168 #ifdef INT64_MAX
169 # define GL_INT64_T
170 #else
171 /* Do not undefine int64_t if gnulib is not being used with 64-bit
172    types, since otherwise it breaks platforms like Tandem/NSK.  */
173 # if LONG_MAX >> 31 >> 31 == 1
174 #  undef int64_t
175 typedef long int gl_int64_t;
176 #  define int64_t gl_int64_t
177 #  define GL_INT64_T
178 # elif defined _MSC_VER
179 #  undef int64_t
180 typedef __int64 gl_int64_t;
181 #  define int64_t gl_int64_t
182 #  define GL_INT64_T
183 # elif @HAVE_LONG_LONG_INT@
184 #  undef int64_t
185 typedef long long int gl_int64_t;
186 #  define int64_t gl_int64_t
187 #  define GL_INT64_T
188 # endif
189 #endif
190
191 #ifdef UINT64_MAX
192 # define GL_UINT64_T
193 #else
194 # if ULONG_MAX >> 31 >> 31 >> 1 == 1
195 #  undef uint64_t
196 typedef unsigned long int gl_uint64_t;
197 #  define uint64_t gl_uint64_t
198 #  define GL_UINT64_T
199 # elif defined _MSC_VER
200 #  undef uint64_t
201 typedef unsigned __int64 gl_uint64_t;
202 #  define uint64_t gl_uint64_t
203 #  define GL_UINT64_T
204 # elif @HAVE_UNSIGNED_LONG_LONG_INT@
205 #  undef uint64_t
206 typedef unsigned long long int gl_uint64_t;
207 #  define uint64_t gl_uint64_t
208 #  define GL_UINT64_T
209 # endif
210 #endif
211
212 /* Avoid collision with Solaris 2.5.1 <pthread.h> etc.  */
213 #define _UINT8_T
214 #define _UINT32_T
215 #define _UINT64_T
216
217
218 /* 7.18.1.2. Minimum-width integer types */
219
220 /* Here we assume a standard architecture where the hardware integer
221    types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types
222    are the same as the corresponding N_t types.  */
223
224 #undef int_least8_t
225 #undef uint_least8_t
226 #undef int_least16_t
227 #undef uint_least16_t
228 #undef int_least32_t
229 #undef uint_least32_t
230 #undef int_least64_t
231 #undef uint_least64_t
232 #define int_least8_t int8_t
233 #define uint_least8_t uint8_t
234 #define int_least16_t int16_t
235 #define uint_least16_t uint16_t
236 #define int_least32_t int32_t
237 #define uint_least32_t uint32_t
238 #ifdef GL_INT64_T
239 # define int_least64_t int64_t
240 #endif
241 #ifdef GL_UINT64_T
242 # define uint_least64_t uint64_t
243 #endif
244
245 /* 7.18.1.3. Fastest minimum-width integer types */
246
247 /* Note: Other <stdint.h> substitutes may define these types differently.
248    It is not recommended to use these types in public header files. */
249
250 /* Here we assume a standard architecture where the hardware integer
251    types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types
252    are taken from the same list of types.  The following code normally
253    uses types consistent with glibc, as that lessens the chance of
254    incompatibility with older GNU hosts.  */
255
256 #undef int_fast8_t
257 #undef uint_fast8_t
258 #undef int_fast16_t
259 #undef uint_fast16_t
260 #undef int_fast32_t
261 #undef uint_fast32_t
262 #undef int_fast64_t
263 #undef uint_fast64_t
264 typedef signed char gl_int_fast8_t;
265 typedef unsigned char gl_uint_fast8_t;
266
267 #ifdef __sun
268 /* Define types compatible with SunOS 5.10, so that code compiled under
269    earlier SunOS versions works with code compiled under SunOS 5.10.  */
270 typedef int gl_int_fast32_t;
271 typedef unsigned int gl_uint_fast32_t;
272 #else
273 typedef long int gl_int_fast32_t;
274 typedef unsigned long int gl_uint_fast32_t;
275 #endif
276 typedef gl_int_fast32_t gl_int_fast16_t;
277 typedef gl_uint_fast32_t gl_uint_fast16_t;
278
279 #define int_fast8_t gl_int_fast8_t
280 #define uint_fast8_t gl_uint_fast8_t
281 #define int_fast16_t gl_int_fast16_t
282 #define uint_fast16_t gl_uint_fast16_t
283 #define int_fast32_t gl_int_fast32_t
284 #define uint_fast32_t gl_uint_fast32_t
285 #ifdef GL_INT64_T
286 # define int_fast64_t int64_t
287 #endif
288 #ifdef GL_UINT64_T
289 # define uint_fast64_t uint64_t
290 #endif
291
292 /* 7.18.1.4. Integer types capable of holding object pointers */
293
294 #undef intptr_t
295 #undef uintptr_t
296 typedef long int gl_intptr_t;
297 typedef unsigned long int gl_uintptr_t;
298 #define intptr_t gl_intptr_t
299 #define uintptr_t gl_uintptr_t
300
301 /* 7.18.1.5. Greatest-width integer types */
302
303 /* Note: These types are compiler dependent. It may be unwise to use them in
304    public header files. */
305
306 /* If the system defines INTMAX_MAX, assume that intmax_t works, and
307    similarly for UINTMAX_MAX and uintmax_t.  This avoids problems with
308    assuming one type where another is used by the system.  */
309
310 #ifndef INTMAX_MAX
311 # undef INTMAX_C
312 # undef intmax_t
313 # if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1
314 typedef long long int gl_intmax_t;
315 #  define intmax_t gl_intmax_t
316 # elif defined GL_INT64_T
317 #  define intmax_t int64_t
318 # else
319 typedef long int gl_intmax_t;
320 #  define intmax_t gl_intmax_t
321 # endif
322 #endif
323
324 #ifndef UINTMAX_MAX
325 # undef UINTMAX_C
326 # undef uintmax_t
327 # if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1
328 typedef unsigned long long int gl_uintmax_t;
329 #  define uintmax_t gl_uintmax_t
330 # elif defined GL_UINT64_T
331 #  define uintmax_t uint64_t
332 # else
333 typedef unsigned long int gl_uintmax_t;
334 #  define uintmax_t gl_uintmax_t
335 # endif
336 #endif
337
338 /* Verify that intmax_t and uintmax_t have the same size.  Too much code
339    breaks if this is not the case.  If this check fails, the reason is likely
340    to be found in the autoconf macros.  */
341 typedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t)
342                                 ? 1 : -1];
343
344 #define GNULIB_defined_stdint_types 1
345 #endif /* !GNULIB_defined_stdint_types */
346
347 /* 7.18.2. Limits of specified-width integer types */
348
349 /* 7.18.2.1. Limits of exact-width integer types */
350
351 /* Here we assume a standard architecture where the hardware integer
352    types have 8, 16, 32, optionally 64 bits.  */
353
354 #undef INT8_MIN
355 #undef INT8_MAX
356 #undef UINT8_MAX
357 #define INT8_MIN  (~ INT8_MAX)
358 #define INT8_MAX  127
359 #define UINT8_MAX  255
360
361 #undef INT16_MIN
362 #undef INT16_MAX
363 #undef UINT16_MAX
364 #define INT16_MIN  (~ INT16_MAX)
365 #define INT16_MAX  32767
366 #define UINT16_MAX  65535
367
368 #undef INT32_MIN
369 #undef INT32_MAX
370 #undef UINT32_MAX
371 #define INT32_MIN  (~ INT32_MAX)
372 #define INT32_MAX  2147483647
373 #define UINT32_MAX  4294967295U
374
375 #if defined GL_INT64_T && ! defined INT64_MAX
376 /* Prefer (- INTMAX_C (1) << 63) over (~ INT64_MAX) because SunPRO C 5.0
377    evaluates the latter incorrectly in preprocessor expressions.  */
378 # define INT64_MIN  (- INTMAX_C (1) << 63)
379 # define INT64_MAX  INTMAX_C (9223372036854775807)
380 #endif
381
382 #if defined GL_UINT64_T && ! defined UINT64_MAX
383 # define UINT64_MAX  UINTMAX_C (18446744073709551615)
384 #endif
385
386 /* 7.18.2.2. Limits of minimum-width integer types */
387
388 /* Here we assume a standard architecture where the hardware integer
389    types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types
390    are the same as the corresponding N_t types.  */
391
392 #undef INT_LEAST8_MIN
393 #undef INT_LEAST8_MAX
394 #undef UINT_LEAST8_MAX
395 #define INT_LEAST8_MIN  INT8_MIN
396 #define INT_LEAST8_MAX  INT8_MAX
397 #define UINT_LEAST8_MAX  UINT8_MAX
398
399 #undef INT_LEAST16_MIN
400 #undef INT_LEAST16_MAX
401 #undef UINT_LEAST16_MAX
402 #define INT_LEAST16_MIN  INT16_MIN
403 #define INT_LEAST16_MAX  INT16_MAX
404 #define UINT_LEAST16_MAX  UINT16_MAX
405
406 #undef INT_LEAST32_MIN
407 #undef INT_LEAST32_MAX
408 #undef UINT_LEAST32_MAX
409 #define INT_LEAST32_MIN  INT32_MIN
410 #define INT_LEAST32_MAX  INT32_MAX
411 #define UINT_LEAST32_MAX  UINT32_MAX
412
413 #undef INT_LEAST64_MIN
414 #undef INT_LEAST64_MAX
415 #ifdef GL_INT64_T
416 # define INT_LEAST64_MIN  INT64_MIN
417 # define INT_LEAST64_MAX  INT64_MAX
418 #endif
419
420 #undef UINT_LEAST64_MAX
421 #ifdef GL_UINT64_T
422 # define UINT_LEAST64_MAX  UINT64_MAX
423 #endif
424
425 /* 7.18.2.3. Limits of fastest minimum-width integer types */
426
427 /* Here we assume a standard architecture where the hardware integer
428    types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types
429    are taken from the same list of types.  */
430
431 #undef INT_FAST8_MIN
432 #undef INT_FAST8_MAX
433 #undef UINT_FAST8_MAX
434 #define INT_FAST8_MIN  SCHAR_MIN
435 #define INT_FAST8_MAX  SCHAR_MAX
436 #define UINT_FAST8_MAX  UCHAR_MAX
437
438 #undef INT_FAST16_MIN
439 #undef INT_FAST16_MAX
440 #undef UINT_FAST16_MAX
441 #define INT_FAST16_MIN  INT_FAST32_MIN
442 #define INT_FAST16_MAX  INT_FAST32_MAX
443 #define UINT_FAST16_MAX  UINT_FAST32_MAX
444
445 #undef INT_FAST32_MIN
446 #undef INT_FAST32_MAX
447 #undef UINT_FAST32_MAX
448 #ifdef __sun
449 # define INT_FAST32_MIN  INT_MIN
450 # define INT_FAST32_MAX  INT_MAX
451 # define UINT_FAST32_MAX  UINT_MAX
452 #else
453 # define INT_FAST32_MIN  LONG_MIN
454 # define INT_FAST32_MAX  LONG_MAX
455 # define UINT_FAST32_MAX  ULONG_MAX
456 #endif
457
458 #undef INT_FAST64_MIN
459 #undef INT_FAST64_MAX
460 #ifdef GL_INT64_T
461 # define INT_FAST64_MIN  INT64_MIN
462 # define INT_FAST64_MAX  INT64_MAX
463 #endif
464
465 #undef UINT_FAST64_MAX
466 #ifdef GL_UINT64_T
467 # define UINT_FAST64_MAX  UINT64_MAX
468 #endif
469
470 /* 7.18.2.4. Limits of integer types capable of holding object pointers */
471
472 #undef INTPTR_MIN
473 #undef INTPTR_MAX
474 #undef UINTPTR_MAX
475 #define INTPTR_MIN  LONG_MIN
476 #define INTPTR_MAX  LONG_MAX
477 #define UINTPTR_MAX  ULONG_MAX
478
479 /* 7.18.2.5. Limits of greatest-width integer types */
480
481 #ifndef INTMAX_MAX
482 # undef INTMAX_MIN
483 # ifdef INT64_MAX
484 #  define INTMAX_MIN  INT64_MIN
485 #  define INTMAX_MAX  INT64_MAX
486 # else
487 #  define INTMAX_MIN  INT32_MIN
488 #  define INTMAX_MAX  INT32_MAX
489 # endif
490 #endif
491
492 #ifndef UINTMAX_MAX
493 # ifdef UINT64_MAX
494 #  define UINTMAX_MAX  UINT64_MAX
495 # else
496 #  define UINTMAX_MAX  UINT32_MAX
497 # endif
498 #endif
499
500 /* 7.18.3. Limits of other integer types */
501
502 /* ptrdiff_t limits */
503 #undef PTRDIFF_MIN
504 #undef PTRDIFF_MAX
505 #if @APPLE_UNIVERSAL_BUILD@
506 # ifdef _LP64
507 #  define PTRDIFF_MIN  _STDINT_MIN (1, 64, 0l)
508 #  define PTRDIFF_MAX  _STDINT_MAX (1, 64, 0l)
509 # else
510 #  define PTRDIFF_MIN  _STDINT_MIN (1, 32, 0)
511 #  define PTRDIFF_MAX  _STDINT_MAX (1, 32, 0)
512 # endif
513 #else
514 # define PTRDIFF_MIN  \
515     _STDINT_MIN (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)
516 # define PTRDIFF_MAX  \
517     _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)
518 #endif
519
520 /* sig_atomic_t limits */
521 #undef SIG_ATOMIC_MIN
522 #undef SIG_ATOMIC_MAX
523 #define SIG_ATOMIC_MIN  \
524    _STDINT_MIN (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \
525                 0@SIG_ATOMIC_T_SUFFIX@)
526 #define SIG_ATOMIC_MAX  \
527    _STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \
528                 0@SIG_ATOMIC_T_SUFFIX@)
529
530
531 /* size_t limit */
532 #undef SIZE_MAX
533 #if @APPLE_UNIVERSAL_BUILD@
534 # ifdef _LP64
535 #  define SIZE_MAX  _STDINT_MAX (0, 64, 0ul)
536 # else
537 #  define SIZE_MAX  _STDINT_MAX (0, 32, 0ul)
538 # endif
539 #else
540 # define SIZE_MAX  _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@)
541 #endif
542
543 /* wchar_t limits */
544 /* Get WCHAR_MIN, WCHAR_MAX.
545    This include is not on the top, above, because on OSF/1 4.0 we have a
546    sequence of nested includes
547    <wchar.h> -> <stdio.h> -> <getopt.h> -> <stdlib.h>, and the latter includes
548    <stdint.h> and assumes its types are already defined.  */
549 #if @HAVE_WCHAR_H@ && ! (defined WCHAR_MIN && defined WCHAR_MAX)
550   /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
551      included before <wchar.h>.  */
552 # include <stddef.h>
553 # include <stdio.h>
554 # include <time.h>
555 # define _GL_JUST_INCLUDE_SYSTEM_WCHAR_H
556 # include <wchar.h>
557 # undef _GL_JUST_INCLUDE_SYSTEM_WCHAR_H
558 #endif
559 #undef WCHAR_MIN
560 #undef WCHAR_MAX
561 #define WCHAR_MIN  \
562    _STDINT_MIN (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)
563 #define WCHAR_MAX  \
564    _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)
565
566 /* wint_t limits */
567 #undef WINT_MIN
568 #undef WINT_MAX
569 #define WINT_MIN  \
570    _STDINT_MIN (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)
571 #define WINT_MAX  \
572    _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)
573
574 /* 7.18.4. Macros for integer constants */
575
576 /* 7.18.4.1. Macros for minimum-width integer constants */
577 /* According to ISO C 99 Technical Corrigendum 1 */
578
579 /* Here we assume a standard architecture where the hardware integer
580    types have 8, 16, 32, optionally 64 bits, and int is 32 bits.  */
581
582 #undef INT8_C
583 #undef UINT8_C
584 #define INT8_C(x) x
585 #define UINT8_C(x) x
586
587 #undef INT16_C
588 #undef UINT16_C
589 #define INT16_C(x) x
590 #define UINT16_C(x) x
591
592 #undef INT32_C
593 #undef UINT32_C
594 #define INT32_C(x) x
595 #define UINT32_C(x) x ## U
596
597 #undef INT64_C
598 #undef UINT64_C
599 #if LONG_MAX >> 31 >> 31 == 1
600 # define INT64_C(x) x##L
601 #elif defined _MSC_VER
602 # define INT64_C(x) x##i64
603 #elif @HAVE_LONG_LONG_INT@
604 # define INT64_C(x) x##LL
605 #endif
606 #if ULONG_MAX >> 31 >> 31 >> 1 == 1
607 # define UINT64_C(x) x##UL
608 #elif defined _MSC_VER
609 # define UINT64_C(x) x##ui64
610 #elif @HAVE_UNSIGNED_LONG_LONG_INT@
611 # define UINT64_C(x) x##ULL
612 #endif
613
614 /* 7.18.4.2. Macros for greatest-width integer constants */
615
616 #ifndef INTMAX_C
617 # if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1
618 #  define INTMAX_C(x)   x##LL
619 # elif defined GL_INT64_T
620 #  define INTMAX_C(x)   INT64_C(x)
621 # else
622 #  define INTMAX_C(x)   x##L
623 # endif
624 #endif
625
626 #ifndef UINTMAX_C
627 # if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1
628 #  define UINTMAX_C(x)  x##ULL
629 # elif defined GL_UINT64_T
630 #  define UINTMAX_C(x)  UINT64_C(x)
631 # else
632 #  define UINTMAX_C(x)  x##UL
633 # endif
634 #endif
635
636 #endif /* _@GUARD_PREFIX@_STDINT_H */
637 #endif /* !(defined __ANDROID__ && ...) */
638 #endif /* !defined _@GUARD_PREFIX@_STDINT_H && !defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H */