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