aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-avr32
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-avr32')
-rw-r--r--include/asm-avr32/types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-avr32/types.h b/include/asm-avr32/types.h
index 2bff153a32ed..8999a3819403 100644
--- a/include/asm-avr32/types.h
+++ b/include/asm-avr32/types.h
@@ -25,9 +25,9 @@ typedef unsigned short __u16;
25typedef __signed__ int __s32; 25typedef __signed__ int __s32;
26typedef unsigned int __u32; 26typedef unsigned int __u32;
27 27
28#if defined(__GNUC__) && !defined(__STRICT_ANSI__) 28#if defined(__GNUC__)
29typedef __signed__ long long __s64; 29__extension__ typedef __signed__ long long __s64;
30typedef unsigned long long __u64; 30__extension__ typedef unsigned long long __u64;
31#endif 31#endif
32 32
33#endif /* __ASSEMBLY__ */ 33#endif /* __ASSEMBLY__ */