diff options
-rw-r--r-- | include/tng_io.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index ce56dd5..96d9fc1 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -243,7 +243,9 @@ typedef int int32_t; # if __WORDSIZE == 64 typedef long int int64_t; # else +#ifdef __GNUC__ __extension__ +#endif typedef long long int int64_t; # endif #endif @@ -257,7 +259,9 @@ typedef unsigned int uint32_t; #if __WORDSIZE == 64 typedef unsigned long int uint64_t; #else +#ifdef __GNUC__ __extension__ +#endif typedef unsigned long long int uint64_t; #endif |