- be gentle to the intel compiler and make sure we have __u64 which is needed for...
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 19 Mar 2007 15:15:06 +0000 (15:15 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 19 Mar 2007 15:15:06 +0000 (15:15 -0000)
include/platform.h

index baabd49b7ac91e8e448a4e1a133257b94f3d09ae..69d031dcae377fddde7b25a0228aaf6afb095e11 100644 (file)
@@ -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))