diff options
author | Bernhard Reutner-Fischer | 2007-03-19 15:15:06 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2007-03-19 15:15:06 +0000 |
commit | be862096c0b07c42dd3f2f6e3530716efe0fc83c (patch) | |
tree | 5282f3a3b5a23b5b7a5b8c3d167b145405233d19 | |
parent | 54e3d1f00d161ee6713d9f8795fe54ad3af61122 (diff) | |
download | busybox-be862096c0b07c42dd3f2f6e3530716efe0fc83c.zip busybox-be862096c0b07c42dd3f2f6e3530716efe0fc83c.tar.gz |
- be gentle to the intel compiler and make sure we have __u64 which is needed for linux/loop.h
-rw-r--r-- | include/platform.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index baabd49..69d031d 100644 --- a/include/platform.h +++ b/include/platform.h @@ -139,6 +139,15 @@ typedef int socklen_t; # define HAVE_MNTENT_H 1 #endif /* ___digital__ && __unix__ */ +/* linux/loop.h relies on __u64. Make sure we have that as a proper type + * until userspace is widely fixed. */ +#ifndef __GNUC__ +#if defined __INTEL_COMPILER +__extension__ typedef __signed__ long long __s64; +__extension__ typedef unsigned long long __u64; +#endif /* __INTEL_COMPILER */ +#endif /* ifndef __GNUC__ */ + /*----- Kernel versioning ------------------------------------*/ #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |