comparison fixincludes/tests/base/stdint-irix65.h @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents
children
comparison
equal deleted inserted replaced
56:3c8a44c06a95 63:b7f97abdc517
1 /* DO NOT EDIT THIS FILE.
2
3 It has been auto-edited by fixincludes from:
4
5 "fixinc/tests/inc/stdint-irix65.h"
6
7 This had to be done to correct non-standard usages in the
8 original, manufacturer supplied header file. */
9
10
11
12 #if defined( IRIX_STDINT_C99_TYPES_CHECK )
13 #define INT64_MIN (-0x7fffffffffffffffLL - 1)
14 #define INT64_MAX 0x7fffffffffffffffLL
15 #define UINT32_MAX 0xffffffffU
16 #define UINT64_MAX 0xffffffffffffffffULL
17 #define INTPTR_MIN (-0x7fffffffL - 1)
18 #define INTPTR_MAX 0x7fffffffL
19 #define UINTPTR_MAX 0xffffffffUL
20 #define INTPTR_MIN (-0x7fffffffffffffffL - 1)
21 #define INTPTR_MAX 0x7fffffffffffffffL
22 #define UINTPTR_MAX 0xffffffffffffffffUL
23 #define PTRDIFF_MIN (-0x7fffffffffffffffL - 1)
24 #define PTRDIFF_MAX 0x7fffffffffffffffL
25 #define SIZE_MAX 0xffffffffffffffffUL
26 #endif /* IRIX_STDINT_C99_TYPES_CHECK */
27
28
29 #if defined( IRIX_STDINT_C99_MACROS_CHECK )
30 #define INT8_C(x) (x)
31 #define INT16_C(x) (x)
32 #define INT32_C(x) (x)
33 #define INT64_C(x) (x ## LL)
34 #define UINT8_C(x) (x)
35 #define UINT16_C(x) (x)
36 #define UINT32_C(x) (x ## U)
37 #define UINT64_C(x) (x ## ULL)
38 #define INTMAX_C(x) (x ## LL)
39 #define UINTMAX_C(x) (x ## ULL)
40 #endif /* IRIX_STDINT_C99_MACROS_CHECK */