diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 | ||||
-rw-r--r-- | include/platform.h | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/include/libbb.h b/include/libbb.h index c5b685985..525162d05 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -340,7 +340,7 @@ typedef struct len_and_sockaddr { | |||
340 | #if ENABLE_FEATURE_IPV6 | 340 | #if ENABLE_FEATURE_IPV6 |
341 | struct sockaddr_in6 sin6; | 341 | struct sockaddr_in6 sin6; |
342 | #endif | 342 | #endif |
343 | }; | 343 | } u; |
344 | } len_and_sockaddr; | 344 | } len_and_sockaddr; |
345 | enum { | 345 | enum { |
346 | LSA_SIZEOF_SA = sizeof( | 346 | LSA_SIZEOF_SA = sizeof( |
diff --git a/include/platform.h b/include/platform.h index 1706de0bf..2daa077af 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -154,12 +154,11 @@ typedef int socklen_t; | |||
154 | 154 | ||
155 | /* linux/loop.h relies on __u64. Make sure we have that as a proper type | 155 | /* linux/loop.h relies on __u64. Make sure we have that as a proper type |
156 | * until userspace is widely fixed. */ | 156 | * until userspace is widely fixed. */ |
157 | #ifndef __GNUC__ | 157 | #if (defined __INTEL_COMPILER && !defined __GNUC__) || \ |
158 | #if defined __INTEL_COMPILER | 158 | (defined __GNUC__ && defined __STRICT_ANSI__) |
159 | __extension__ typedef __signed__ long long __s64; | 159 | __extension__ typedef __signed__ long long __s64; |
160 | __extension__ typedef unsigned long long __u64; | 160 | __extension__ typedef unsigned long long __u64; |
161 | #endif /* __INTEL_COMPILER */ | 161 | #endif |
162 | #endif /* ifndef __GNUC__ */ | ||
163 | 162 | ||
164 | /*----- Kernel versioning ------------------------------------*/ | 163 | /*----- Kernel versioning ------------------------------------*/ |
165 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) | 164 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |