vserver 1.9.3
[linux-2.6.git] / include / linux / stddef.h
index dfa2322..b3a2cad 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef _LINUX_STDDEF_H
 #define _LINUX_STDDEF_H
 
+#include <linux/compiler.h>
+
 #undef NULL
 #if defined(__cplusplus)
 #define NULL 0
@@ -9,6 +11,10 @@
 #endif
 
 #undef offsetof
+#ifdef __compiler_offsetof
+#define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
+#else
 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
+#endif
 
 #endif