Update Int.h

This commit is contained in:
Peter Goodman
2021-06-04 21:35:19 -04:00
committed by GitHub
parent 7c9a866db5
commit afb161ca51
+1 -1
View File
@@ -73,7 +73,7 @@ typedef __int128_t int128_t;
#elif defined(__sparc__)
typedef __uint128_t uint128_t;
typedef __int128_t int128_t;
#elif !__is_identifier(_ExtInt)
#elif defined(__is_identifier) && __is_identifier(_ExtInt)
typedef unsigned _ExtInt(128) uint128_t;
typedef signed _ExtInt(128) int128_t;
#else