Skip to content
Snippets Groups Projects
Commit f8fa6368 authored by Shinya Kuribayashi's avatar Shinya Kuribayashi Committed by Wolfgang Denk
Browse files

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: default avatarShinya Kuribayashi <skuribay@ruby.dti.ne.jp>
parent b29661fc
No related branches found
No related tags found
No related merge requests found
...@@ -17,9 +17,9 @@ typedef unsigned short __u16; ...@@ -17,9 +17,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
/* /*
......
...@@ -25,9 +25,9 @@ typedef unsigned short __u16; ...@@ -25,9 +25,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
/* /*
......
...@@ -25,9 +25,9 @@ typedef unsigned short __u16; ...@@ -25,9 +25,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
/* /*
......
...@@ -25,9 +25,9 @@ typedef unsigned short __u16; ...@@ -25,9 +25,9 @@ typedef unsigned short __u16;
typedef __signed__ int __s32; typedef __signed__ int __s32;
typedef unsigned int __u32; typedef unsigned int __u32;
#if defined(__GNUC__) && !defined(__STRICT_ANSI__) #if defined(__GNUC__)
typedef __signed__ long long __s64; __extension__ typedef __signed__ long long __s64;
typedef unsigned long long __u64; __extension__ typedef unsigned long long __u64;
#endif #endif
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment