aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-19 15:15:06 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-19 15:15:06 +0000
commitc444f8ca0137c15eb3fd043e7e6022b169adcab7 (patch)
tree5282f3a3b5a23b5b7a5b8c3d167b145405233d19
parentdc6bc95cc2a37b2a2352f18258332a857502ad42 (diff)
downloadbusybox-w32-c444f8ca0137c15eb3fd043e7e6022b169adcab7.tar.gz
busybox-w32-c444f8ca0137c15eb3fd043e7e6022b169adcab7.tar.bz2
busybox-w32-c444f8ca0137c15eb3fd043e7e6022b169adcab7.zip
- be gentle to the intel compiler and make sure we have __u64 which is needed for linux/loop.h
git-svn-id: svn://busybox.net/trunk/busybox@18164 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--include/platform.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h
index baabd49b7..69d031dca 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -139,6 +139,15 @@ typedef int socklen_t;
139# define HAVE_MNTENT_H 1 139# define HAVE_MNTENT_H 1
140#endif /* ___digital__ && __unix__ */ 140#endif /* ___digital__ && __unix__ */
141 141
142/* linux/loop.h relies on __u64. Make sure we have that as a proper type
143 * until userspace is widely fixed. */
144#ifndef __GNUC__
145#if defined __INTEL_COMPILER
146__extension__ typedef __signed__ long long __s64;
147__extension__ typedef unsigned long long __u64;
148#endif /* __INTEL_COMPILER */
149#endif /* ifndef __GNUC__ */
150
142/*----- Kernel versioning ------------------------------------*/ 151/*----- Kernel versioning ------------------------------------*/
143#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) 152#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
144 153