| OLD | NEW |
| 1 /** | 1 /** |
| 2 * This file has no copyright assigned and is placed in the Public Domain. | 2 * This file has no copyright assigned and is placed in the Public Domain. |
| 3 * This file was originally part of the w64 mingw-runtime package. | 3 * This file was originally part of the w64 mingw-runtime package. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 /* ISO C9x 7.18 Integer types <stdint.h> | 6 /* ISO C9x 7.18 Integer types <stdint.h> |
| 7 * Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794) | 7 * Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794) |
| 8 * | 8 * |
| 9 * THIS SOFTWARE IS NOT COPYRIGHTED | 9 * THIS SOFTWARE IS NOT COPYRIGHTED |
| 10 * | 10 * |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 #define UINT8_C(val) (val) | 247 #define UINT8_C(val) (val) |
| 248 #define UINT16_C(val) (val) | 248 #define UINT16_C(val) (val) |
| 249 #define UINT32_C(val) (val##i32) | 249 #define UINT32_C(val) (val##i32) |
| 250 #define UINT64_C(val) val##ui64 | 250 #define UINT64_C(val) val##ui64 |
| 251 | 251 |
| 252 /* 7.18.4.2 Macros for greatest-width integer constants */ | 252 /* 7.18.4.2 Macros for greatest-width integer constants */ |
| 253 #define INTMAX_C(val) val##i64 | 253 #define INTMAX_C(val) val##i64 |
| 254 #define UINTMAX_C(val) val##ui64 | 254 #define UINTMAX_C(val) val##ui64 |
| 255 | 255 |
| 256 #endif | 256 #endif |
| OLD | NEW |