Avoid gcc warnings because of #pragma GCC system_header on older gcc.
[gnulib.git] / lib / stdint.in.h
1 /* Copyright (C) 2001-2002, 2004-2008 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 General Public License as published by
7    the Free Software Foundation; either version 2, 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 General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 /*
20  * ISO C 99 <stdint.h> for platforms that lack it.
21  * <http://www.opengroup.org/susv3xbd/stdint.h.html>
22  */
23
24 #ifndef _GL_STDINT_H
25
26 /* When including a system file that in turn includes <inttypes.h>,
27    use the system <inttypes.h>, not our substitute.  This avoids
28    problems with (for example) VMS, whose <sys/bitypes.h> includes
29    <inttypes.h>.  */
30 #define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H
31
32 /* Get those types that are already defined in other system include
33    files, so that we can "#define int8_t signed char" below without
34    worrying about a later system include file containing a "typedef
35    signed char int8_t;" that will get messed up by our macro.  Our
36    macros should all be consistent with the system versions, except
37    for the "fast" types and macros, which we recommend against using
38    in public interfaces due to compiler differences.  */
39
40 #if @HAVE_STDINT_H@
41 # if defined __sgi && ! defined __c99
42    /* Bypass IRIX's <stdint.h> if in C89 mode, since it merely annoys users
43       with "This header file is to be used only for c99 mode compilations"
44       diagnostics.  */
45 #  define __STDINT_H__
46 # endif
47   /* Other systems may have an incomplete or buggy <stdint.h>.
48      Include it before <inttypes.h>, since any "#include <stdint.h>"
49      in <inttypes.h> would reinclude us, skipping our contents because
50      _GL_STDINT_H is defined.
51      The include_next requires a split double-inclusion guard.  */
52 # if __GNUC__ >= 3
53 @PRAGMA_SYSTEM_HEADER@
54 # endif
55 # @INCLUDE_NEXT@ @NEXT_STDINT_H@
56 #endif
57
58 #if ! defined _GL_STDINT_H && ! defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H
59 #define _GL_STDINT_H
60
61 /* <sys/types.h> defines some of the stdint.h types as well, on glibc,
62    IRIX 6.5, and OpenBSD 3.8 (via <machine/types.h>).
63    AIX 5.2 <sys/types.h> isn't needed and causes troubles.
64    MacOS X 10.4.6 <sys/types.h> includes <stdint.h> (which is us), but
65    relies on the system <stdint.h> definitions, so include
66    <sys/types.h> after @NEXT_STDINT_H@.  */
67 #if @HAVE_SYS_TYPES_H@ && ! defined _AIX
68 # include <sys/types.h>
69 #endif
70
71 /* Get LONG_MIN, LONG_MAX, ULONG_MAX.  */
72 #include <limits.h>
73
74 #if @HAVE_INTTYPES_H@
75   /* In OpenBSD 3.8, <inttypes.h> includes <machine/types.h>, which defines
76      int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__.
77      <inttypes.h> also defines intptr_t and uintptr_t.  */
78 # include <inttypes.h>
79 #elif @HAVE_SYS_INTTYPES_H@
80   /* Solaris 7 <sys/inttypes.h> has the types except the *_fast*_t types, and
81      the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX.  */
82 # include <sys/inttypes.h>
83 #endif
84
85 #if @HAVE_SYS_BITYPES_H@ && ! defined __BIT_TYPES_DEFINED__
86   /* Linux libc4 >= 4.6.7 and libc5 have a <sys/bitypes.h> that defines
87      int{8,16,32,64}_t and __BIT_TYPES_DEFINED__.  In libc5 >= 5.2.2 it is
88      included by <sys/types.h>.  */
89 # include <sys/bitypes.h>
90 #endif
91
92 #if ! defined __cplusplus || defined __STDC_CONSTANT_MACROS
93
94 /* Get WCHAR_MIN, WCHAR_MAX.  */
95 # if ! (defined WCHAR_MIN && defined WCHAR_MAX)
96 #  include <wchar.h>
97 # endif
98
99 #endif
100
101 #undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H
102
103 /* Minimum and maximum values for a integer type under the usual assumption.
104    Return an unspecified value if BITS == 0, adding a check to pacify
105    picky compilers.  */
106
107 #define _STDINT_MIN(signed, bits, zero) \
108   ((signed) ? (- ((zero) + 1) << ((bits) ? (bits) - 1 : 0)) : (zero))
109
110 #define _STDINT_MAX(signed, bits, zero) \
111   ((signed) \
112    ? ~ _STDINT_MIN (signed, bits, zero) \
113    : /* The expression for the unsigned case.  The subtraction of (signed) \
114         is a nop in the unsigned case and avoids "signed integer overflow" \
115         warnings in the signed case.  */ \
116      ((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1)
117
118 /* 7.18.1.1. Exact-width integer types */
119
120 /* Here we assume a standard architecture where the hardware integer
121    types have 8, 16, 32, optionally 64 bits.  */
122
123 #undef int8_t
124 #undef uint8_t
125 #define int8_t signed char
126 #define uint8_t unsigned char
127
128 #undef int16_t
129 #undef uint16_t
130 #define int16_t short int
131 #define uint16_t unsigned short int
132
133 #undef int32_t
134 #undef uint32_t
135 #define int32_t int
136 #define uint32_t unsigned int
137
138 /* Do not undefine int64_t if gnulib is not being used with 64-bit
139    types, since otherwise it breaks platforms like Tandem/NSK.  */
140 #if LONG_MAX >> 31 >> 31 == 1
141 # undef int64_t
142 # define int64_t long int
143 # define GL_INT64_T
144 #elif defined _MSC_VER
145 # undef int64_t
146 # define int64_t __int64
147 # define GL_INT64_T
148 #elif @HAVE_LONG_LONG_INT@
149 # undef int64_t
150 # define int64_t long long int
151 # define GL_INT64_T
152 #endif
153
154 #if ULONG_MAX >> 31 >> 31 >> 1 == 1
155 # undef uint64_t
156 # define uint64_t unsigned long int
157 # define GL_UINT64_T
158 #elif defined _MSC_VER
159 # undef uint64_t
160 # define uint64_t unsigned __int64
161 # define GL_UINT64_T
162 #elif @HAVE_UNSIGNED_LONG_LONG_INT@
163 # undef uint64_t
164 # define uint64_t unsigned long long int
165 # define GL_UINT64_T
166 #endif
167
168 /* Avoid collision with Solaris 2.5.1 <pthread.h> etc.  */
169 #define _UINT8_T
170 #define _UINT32_T
171 #define _UINT64_T
172
173
174 /* 7.18.1.2. Minimum-width integer types */
175
176 /* Here we assume a standard architecture where the hardware integer
177    types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types
178    are the same as the corresponding N_t types.  */
179
180 #undef int_least8_t
181 #undef uint_least8_t
182 #undef int_least16_t
183 #undef uint_least16_t
184 #undef int_least32_t
185 #undef uint_least32_t
186 #undef int_least64_t
187 #undef uint_least64_t
188 #define int_least8_t int8_t
189 #define uint_least8_t uint8_t
190 #define int_least16_t int16_t
191 #define uint_least16_t uint16_t
192 #define int_least32_t int32_t
193 #define uint_least32_t uint32_t
194 #ifdef GL_INT64_T
195 # define int_least64_t int64_t
196 #endif
197 #ifdef GL_UINT64_T
198 # define uint_least64_t uint64_t
199 #endif
200
201 /* 7.18.1.3. Fastest minimum-width integer types */
202
203 /* Note: Other <stdint.h> substitutes may define these types differently.
204    It is not recommended to use these types in public header files. */
205
206 /* Here we assume a standard architecture where the hardware integer
207    types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types
208    are taken from the same list of types.  Assume that 'long int'
209    is fast enough for all narrower integers.  */
210
211 #undef int_fast8_t
212 #undef uint_fast8_t
213 #undef int_fast16_t
214 #undef uint_fast16_t
215 #undef int_fast32_t
216 #undef uint_fast32_t
217 #undef int_fast64_t
218 #undef uint_fast64_t
219 #define int_fast8_t long int
220 #define uint_fast8_t unsigned int_fast8_t
221 #define int_fast16_t long int
222 #define uint_fast16_t unsigned int_fast16_t
223 #define int_fast32_t long int
224 #define uint_fast32_t unsigned int_fast32_t
225 #ifdef GL_INT64_T
226 # define int_fast64_t int64_t
227 #endif
228 #ifdef GL_UINT64_T
229 # define uint_fast64_t uint64_t
230 #endif
231
232 /* 7.18.1.4. Integer types capable of holding object pointers */
233
234 #undef intptr_t
235 #undef uintptr_t
236 #define intptr_t long int
237 #define uintptr_t unsigned long int
238
239 /* 7.18.1.5. Greatest-width integer types */
240
241 /* Note: These types are compiler dependent. It may be unwise to use them in
242    public header files. */
243
244 #undef intmax_t
245 #if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1
246 # define intmax_t long long int
247 #elif defined GL_INT64_T
248 # define intmax_t int64_t
249 #else
250 # define intmax_t long int
251 #endif
252
253 #undef uintmax_t
254 #if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1
255 # define uintmax_t unsigned long long int
256 #elif defined GL_UINT64_T
257 # define uintmax_t uint64_t
258 #else
259 # define uintmax_t unsigned long int
260 #endif
261
262 /* Verify that intmax_t and uintmax_t have the same size.  Too much code
263    breaks if this is not the case.  If this check fails, the reason is likely
264    to be found in the autoconf macros.  */
265 typedef int _verify_intmax_size[2 * (sizeof (intmax_t) == sizeof (uintmax_t)) - 1];
266
267 /* 7.18.2. Limits of specified-width integer types */
268
269 #if ! defined __cplusplus || defined __STDC_LIMIT_MACROS
270
271 /* 7.18.2.1. Limits of exact-width integer types */
272
273 /* Here we assume a standard architecture where the hardware integer
274    types have 8, 16, 32, optionally 64 bits.  */
275
276 #undef INT8_MIN
277 #undef INT8_MAX
278 #undef UINT8_MAX
279 #define INT8_MIN  (~ INT8_MAX)
280 #define INT8_MAX  127
281 #define UINT8_MAX  255
282
283 #undef INT16_MIN
284 #undef INT16_MAX
285 #undef UINT16_MAX
286 #define INT16_MIN  (~ INT16_MAX)
287 #define INT16_MAX  32767
288 #define UINT16_MAX  65535
289
290 #undef INT32_MIN
291 #undef INT32_MAX
292 #undef UINT32_MAX
293 #define INT32_MIN  (~ INT32_MAX)
294 #define INT32_MAX  2147483647
295 #define UINT32_MAX  4294967295U
296
297 #undef INT64_MIN
298 #undef INT64_MAX
299 #ifdef GL_INT64_T
300 /* Prefer (- INTMAX_C (1) << 63) over (~ INT64_MAX) because SunPRO C 5.0
301    evaluates the latter incorrectly in preprocessor expressions.  */
302 # define INT64_MIN  (- INTMAX_C (1) << 63)
303 # define INT64_MAX  INTMAX_C (9223372036854775807)
304 #endif
305
306 #undef UINT64_MAX
307 #ifdef GL_UINT64_T
308 # define UINT64_MAX  UINTMAX_C (18446744073709551615)
309 #endif
310
311 /* 7.18.2.2. Limits of minimum-width integer types */
312
313 /* Here we assume a standard architecture where the hardware integer
314    types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types
315    are the same as the corresponding N_t types.  */
316
317 #undef INT_LEAST8_MIN
318 #undef INT_LEAST8_MAX
319 #undef UINT_LEAST8_MAX
320 #define INT_LEAST8_MIN  INT8_MIN
321 #define INT_LEAST8_MAX  INT8_MAX
322 #define UINT_LEAST8_MAX  UINT8_MAX
323
324 #undef INT_LEAST16_MIN
325 #undef INT_LEAST16_MAX
326 #undef UINT_LEAST16_MAX
327 #define INT_LEAST16_MIN  INT16_MIN
328 #define INT_LEAST16_MAX  INT16_MAX
329 #define UINT_LEAST16_MAX  UINT16_MAX
330
331 #undef INT_LEAST32_MIN
332 #undef INT_LEAST32_MAX
333 #undef UINT_LEAST32_MAX
334 #define INT_LEAST32_MIN  INT32_MIN
335 #define INT_LEAST32_MAX  INT32_MAX
336 #define UINT_LEAST32_MAX  UINT32_MAX
337
338 #undef INT_LEAST64_MIN
339 #undef INT_LEAST64_MAX
340 #ifdef GL_INT64_T
341 # define INT_LEAST64_MIN  INT64_MIN
342 # define INT_LEAST64_MAX  INT64_MAX
343 #endif
344
345 #undef UINT_LEAST64_MAX
346 #ifdef GL_UINT64_T
347 # define UINT_LEAST64_MAX  UINT64_MAX
348 #endif
349
350 /* 7.18.2.3. Limits of fastest minimum-width integer types */
351
352 /* Here we assume a standard architecture where the hardware integer
353    types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types
354    are taken from the same list of types.  */
355
356 #undef INT_FAST8_MIN
357 #undef INT_FAST8_MAX
358 #undef UINT_FAST8_MAX
359 #define INT_FAST8_MIN  LONG_MIN
360 #define INT_FAST8_MAX  LONG_MAX
361 #define UINT_FAST8_MAX  ULONG_MAX
362
363 #undef INT_FAST16_MIN
364 #undef INT_FAST16_MAX
365 #undef UINT_FAST16_MAX
366 #define INT_FAST16_MIN  LONG_MIN
367 #define INT_FAST16_MAX  LONG_MAX
368 #define UINT_FAST16_MAX  ULONG_MAX
369
370 #undef INT_FAST32_MIN
371 #undef INT_FAST32_MAX
372 #undef UINT_FAST32_MAX
373 #define INT_FAST32_MIN  LONG_MIN
374 #define INT_FAST32_MAX  LONG_MAX
375 #define UINT_FAST32_MAX  ULONG_MAX
376
377 #undef INT_FAST64_MIN
378 #undef INT_FAST64_MAX
379 #ifdef GL_INT64_T
380 # define INT_FAST64_MIN  INT64_MIN
381 # define INT_FAST64_MAX  INT64_MAX
382 #endif
383
384 #undef UINT_FAST64_MAX
385 #ifdef GL_UINT64_T
386 # define UINT_FAST64_MAX  UINT64_MAX
387 #endif
388
389 /* 7.18.2.4. Limits of integer types capable of holding object pointers */
390
391 #undef INTPTR_MIN
392 #undef INTPTR_MAX
393 #undef UINTPTR_MAX
394 #define INTPTR_MIN  LONG_MIN
395 #define INTPTR_MAX  LONG_MAX
396 #define UINTPTR_MAX  ULONG_MAX
397
398 /* 7.18.2.5. Limits of greatest-width integer types */
399
400 #undef INTMAX_MIN
401 #undef INTMAX_MAX
402 #ifdef INT64_MAX
403 # define INTMAX_MIN  INT64_MIN
404 # define INTMAX_MAX  INT64_MAX
405 #else
406 # define INTMAX_MIN  INT32_MIN
407 # define INTMAX_MAX  INT32_MAX
408 #endif
409
410 #undef UINTMAX_MAX
411 #ifdef UINT64_MAX
412 # define UINTMAX_MAX  UINT64_MAX
413 #else
414 # define UINTMAX_MAX  UINT32_MAX
415 #endif
416
417 /* 7.18.3. Limits of other integer types */
418
419 /* ptrdiff_t limits */
420 #undef PTRDIFF_MIN
421 #undef PTRDIFF_MAX
422 #define PTRDIFF_MIN  \
423    _STDINT_MIN (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)
424 #define PTRDIFF_MAX  \
425    _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@)
426
427 /* sig_atomic_t limits */
428 #undef SIG_ATOMIC_MIN
429 #undef SIG_ATOMIC_MAX
430 #define SIG_ATOMIC_MIN  \
431    _STDINT_MIN (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \
432                 0@SIG_ATOMIC_T_SUFFIX@)
433 #define SIG_ATOMIC_MAX  \
434    _STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \
435                 0@SIG_ATOMIC_T_SUFFIX@)
436
437
438 /* size_t limit */
439 #undef SIZE_MAX
440 #define SIZE_MAX  _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@)
441
442 /* wchar_t limits */
443 #undef WCHAR_MIN
444 #undef WCHAR_MAX
445 #define WCHAR_MIN  \
446    _STDINT_MIN (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)
447 #define WCHAR_MAX  \
448    _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@)
449
450 /* wint_t limits */
451 #undef WINT_MIN
452 #undef WINT_MAX
453 #define WINT_MIN  \
454    _STDINT_MIN (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)
455 #define WINT_MAX  \
456    _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@)
457
458 #endif /* !defined __cplusplus || defined __STDC_LIMIT_MACROS */
459
460 /* 7.18.4. Macros for integer constants */
461
462 #if ! defined __cplusplus || defined __STDC_CONSTANT_MACROS
463
464 /* 7.18.4.1. Macros for minimum-width integer constants */
465 /* According to ISO C 99 Technical Corrigendum 1 */
466
467 /* Here we assume a standard architecture where the hardware integer
468    types have 8, 16, 32, optionally 64 bits, and int is 32 bits.  */
469
470 #undef INT8_C
471 #undef UINT8_C
472 #define INT8_C(x) x
473 #define UINT8_C(x) x
474
475 #undef INT16_C
476 #undef UINT16_C
477 #define INT16_C(x) x
478 #define UINT16_C(x) x
479
480 #undef INT32_C
481 #undef UINT32_C
482 #define INT32_C(x) x
483 #define UINT32_C(x) x ## U
484
485 #undef INT64_C
486 #undef UINT64_C
487 #if LONG_MAX >> 31 >> 31 == 1
488 # define INT64_C(x) x##L
489 #elif defined _MSC_VER
490 # define INT64_C(x) x##i64
491 #elif @HAVE_LONG_LONG_INT@
492 # define INT64_C(x) x##LL
493 #endif
494 #if ULONG_MAX >> 31 >> 31 >> 1 == 1
495 # define UINT64_C(x) x##UL
496 #elif defined _MSC_VER
497 # define UINT64_C(x) x##ui64
498 #elif @HAVE_UNSIGNED_LONG_LONG_INT@
499 # define UINT64_C(x) x##ULL
500 #endif
501
502 /* 7.18.4.2. Macros for greatest-width integer constants */
503
504 #undef INTMAX_C
505 #if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1
506 # define INTMAX_C(x)   x##LL
507 #elif defined GL_INT64_T
508 # define INTMAX_C(x)   INT64_C(x)
509 #else
510 # define INTMAX_C(x)   x##L
511 #endif
512
513 #undef UINTMAX_C
514 #if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1
515 # define UINTMAX_C(x)  x##ULL
516 #elif defined GL_UINT64_T
517 # define UINTMAX_C(x)  UINT64_C(x)
518 #else
519 # define UINTMAX_C(x)  x##UL
520 #endif
521
522 #endif /* !defined __cplusplus || defined __STDC_CONSTANT_MACROS */
523
524 #endif /* _GL_STDINT_H */
525 #endif /* !defined _GL_STDINT_H && !defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H */