From f8fa6368a6a0c02164da8e2f52f18d457c6977bd Mon Sep 17 00:00:00 2001 From: Shinya Kuribayashi Date: Sun, 24 Feb 2008 11:44:29 +0900 Subject: Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets. The previous patch was lacking of i386, microblaze, nios and nios2. This patch tries to fix them. Signed-off-by: Shinya Kuribayashi --- include/asm-nios/types.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/asm-nios') diff --git a/include/asm-nios/types.h b/include/asm-nios/types.h index 43fd8f6d2..24c98a89e 100644 --- a/include/asm-nios/types.h +++ b/include/asm-nios/types.h @@ -25,9 +25,9 @@ typedef unsigned short __u16; typedef __signed__ int __s32; typedef unsigned int __u32; -#if defined(__GNUC__) && !defined(__STRICT_ANSI__) -typedef __signed__ long long __s64; -typedef unsigned long long __u64; +#if defined(__GNUC__) +__extension__ typedef __signed__ long long __s64; +__extension__ typedef unsigned long long __u64; #endif /* -- cgit v1.2.3