From 7782d0bf55c294b7ed872e2590fcf4a683be5e05 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 1 Oct 1998 11:00:26 +0000 Subject: Update. * sys/types.h: Protect use of long long by __extension__. * stdlib/stdlib.h: Likewise. * string/string.h: Likewise. * sysdeps/i386/bits/byteswap.h: Likewise. * sysdeps/geeric/bits/byteswap.h: Likewise. * sysdeps/i386/fpu/bits/mathinline.h: Likewise. * sysdeps/unix/sysv/linux/bits/types.h: Likewise. * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise. * sysdeps/wordsize-32/inttypes.h: Likewise. * sysdeps/wordsize-32/stdint.h: Likewise. * wcsmbs/wchar.h: Likewise. --- posix/sys/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'posix/sys') 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; -- cgit v1.2.3