File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1053
1053
#elif defined(__LITTLE_ENDIAN__) || defined(WORDS_LITTLEENDIAN) || \
1054
1054
( __BYTE_ORDER__ > 0 && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ )
1055
1055
#define PLATFORM_ARCH_LITTLE_ENDIAN 1
1056
- #elif _PLATFORM_ARCH_BIG_ENDIAN
1056
+ #elif defined( _PLATFORM_ARCH_BIG_ENDIAN)
1057
1057
#define PLATFORM_ARCH_BIG_ENDIAN 1
1058
- #elif _PLATFORM_ARCH_LITTLE_ENDIAN
1058
+ #elif defined( _PLATFORM_ARCH_LITTLE_ENDIAN)
1059
1059
#define PLATFORM_ARCH_LITTLE_ENDIAN 1
1060
1060
#endif
1061
1061
#undef _PLATFORM_ARCH_BIG_ENDIAN
1086
1086
defined (__arch32__) || defined(__32BIT__) || \
1087
1087
__INTPTR_MAX__ == 2147483647
1088
1088
#define PLATFORM_ARCH_32 1
1089
- #elif _PLATFORM_ARCH_64
1089
+ #elif defined( _PLATFORM_ARCH_64)
1090
1090
#define PLATFORM_ARCH_64 1
1091
- #elif _PLATFORM_ARCH_32
1091
+ #elif defined( _PLATFORM_ARCH_32)
1092
1092
#define PLATFORM_ARCH_32 1
1093
1093
#endif
1094
1094
#undef _PLATFORM_ARCH_64
You can’t perform that action at this time.
0 commit comments