diff -uNr _stdint.h.org _stdint.h
|
old
|
new
|
|
| 44 | 44 | #ifndef _MACHINE__STDINT_H_ |
| 45 | 45 | #define _MACHINE__STDINT_H_ |
| 46 | 46 | |
| 47 | | #if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) |
| | 47 | #if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) || \ |
| | 48 | __cplusplus >= 201103L |
| 48 | 49 | |
| 49 | 50 | #define INT8_C(c) (c) |
| 50 | 51 | #define INT16_C(c) (c) |
| … |
… |
|
| 61 | 62 | |
| 62 | 63 | #endif /* !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) */ |
| 63 | 64 | |
| 64 | | #if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) |
| | 65 | #if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) || \ |
| | 66 | __cplusplus >= 201103L |
| 65 | 67 | |
| 66 | 68 | /* |
| 67 | 69 | * ISO/IEC 9899:1999 |