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 b36b561dba..33c2176d0f 100644 --- a/posix/sys/types.h +++ b/posix/sys/types.h @@ -164,7 +164,7 @@ typedef short int int16_t; typedef int int32_t; # if __WORDSIZE == 64 typedef long int int64_t; -# elif __GLIBC_HAVE_LONG_LONG +# else __extension__ typedef long long int int64_t; # endif # endif @@ -175,7 +175,7 @@ typedef unsigned short int u_int16_t; typedef unsigned int u_int32_t; # if __WORDSIZE == 64 typedef unsigned long int u_int64_t; -# elif __GLIBC_HAVE_LONG_LONG +# else __extension__ typedef unsigned long long int u_int64_t; # endif |