comparison gcc/glimits.h @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents 77e2b8dfacca
children 84e7813d76e9
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 /* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2000, 2001, 1 /* Copyright (C) 1991-2017 Free Software Foundation, Inc.
2 2002 Free Software Foundation, Inc.
3 2
4 This file is part of GCC. 3 This file is part of GCC.
5 4
6 GCC is free software; you can redistribute it and/or modify it under 5 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 6 the terms of the GNU General Public License as published by the Free
122 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */ 121 /* Maximum value an `unsigned long long int' can hold. (Minimum is 0). */
123 # undef ULONG_LONG_MAX 122 # undef ULONG_LONG_MAX
124 # define ULONG_LONG_MAX (LONG_LONG_MAX * 2ULL + 1ULL) 123 # define ULONG_LONG_MAX (LONG_LONG_MAX * 2ULL + 1ULL)
125 #endif 124 #endif
126 125
126 #ifdef __STDC_WANT_IEC_60559_BFP_EXT__
127 /* TS 18661-1 widths of integer types. */
128 # undef CHAR_WIDTH
129 # define CHAR_WIDTH __SCHAR_WIDTH__
130 # undef SCHAR_WIDTH
131 # define SCHAR_WIDTH __SCHAR_WIDTH__
132 # undef UCHAR_WIDTH
133 # define UCHAR_WIDTH __SCHAR_WIDTH__
134 # undef SHRT_WIDTH
135 # define SHRT_WIDTH __SHRT_WIDTH__
136 # undef USHRT_WIDTH
137 # define USHRT_WIDTH __SHRT_WIDTH__
138 # undef INT_WIDTH
139 # define INT_WIDTH __INT_WIDTH__
140 # undef UINT_WIDTH
141 # define UINT_WIDTH __INT_WIDTH__
142 # undef LONG_WIDTH
143 # define LONG_WIDTH __LONG_WIDTH__
144 # undef ULONG_WIDTH
145 # define ULONG_WIDTH __LONG_WIDTH__
146 # undef LLONG_WIDTH
147 # define LLONG_WIDTH __LONG_LONG_WIDTH__
148 # undef ULLONG_WIDTH
149 # define ULLONG_WIDTH __LONG_LONG_WIDTH__
150 #endif
151
127 #endif /* _LIMITS_H___ */ 152 #endif /* _LIMITS_H___ */