diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/sys/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/sys/types.h b/posix/sys/types.h index 936b738621..b0246a2531 100644 --- a/posix/sys/types.h +++ b/posix/sys/types.h @@ -141,7 +141,7 @@ typedef char int8_t; typedef short int int16_t; typedef int int32_t; # ifdef __GNUC__ -typedef long long int int64_t; +__extension__ typedef long long int int64_t; # endif # endif @@ -150,7 +150,7 @@ typedef unsigned char u_int8_t; typedef unsigned short int u_int16_t; typedef unsigned int u_int32_t; # ifdef __GNUC__ -typedef unsigned long long int u_int64_t; +__extension__ typedef unsigned long long int u_int64_t; # endif typedef int register_t; |