vserver 2.0 rc7
[linux-2.6.git] / include / linux / compiler-gcc3.h
index eec2f88..a6fa615 100644 (file)
@@ -10,7 +10,7 @@
 #endif
 
 #if __GNUC_MINOR__ > 0
-# define __deprecated  __attribute__((deprecated))
+# define __deprecated          __attribute__((deprecated))
 #endif
 
 #if __GNUC_MINOR__ >= 3
 #define __attribute_const__    __attribute__((__const__))
 
 #if __GNUC_MINOR__ >= 1
-#define  noinline __attribute__((noinline))
+#define  noinline              __attribute__((noinline))
 #endif
+
 #if __GNUC_MINOR__ >= 4
-#define __must_check __attribute__((warn_unused_result))
+#define __must_check           __attribute__((warn_unused_result))
 #endif
 
-#if __GNUC_MINOR__ >= 5
-#define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
-#endif