linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / include / linux / stddef.h
index ea65dfb..b3a2cad 100644 (file)
 #define NULL ((void *)0)
 #endif
 
-#ifdef __KERNEL__
 #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 /* __KERNEL__ */
 
 #endif