From: Ulrich Drepper Date: Thu, 1 Oct 1998 10:57:23 +0000 (+0000) Subject: Protect use of long long by __extension__. X-Git-Tag: glibc-2.16-ports-merge^2~3096 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f72aee6de5802bd45d0bfa90e19b6569cf3ab51;p=platform%2Fupstream%2Fglibc.git Protect use of long long by __extension__. --- diff --git a/sysdeps/unix/sysv/linux/mips/bits/types.h b/sysdeps/unix/sysv/linux/mips/bits/types.h index 2bb8a2a..c716d57 100644 --- a/sysdeps/unix/sysv/linux/mips/bits/types.h +++ b/sysdeps/unix/sysv/linux/mips/bits/types.h @@ -34,8 +34,8 @@ typedef unsigned short __u_short; typedef unsigned int __u_int; typedef unsigned long __u_long; #ifdef __GNUC__ -typedef unsigned long long int __u_quad_t; -typedef long long int __quad_t; +__extension__ typedef unsigned long long int __u_quad_t; +__extension__ typedef long long int __quad_t; #else typedef struct { @@ -53,8 +53,8 @@ typedef unsigned short int __uint16_t; typedef signed int __int32_t; typedef unsigned int __uint32_t; #ifdef __GNUC__ -typedef signed long long int __int64_t; -typedef unsigned long long int __uint64_t; +__extension__ typedef signed long long int __int64_t; +__extension__ typedef unsigned long long int __uint64_t; #endif typedef __quad_t *__qaddr_t;