switch statfs to fget_light/fput_light
[linux-2.6.git] / include / linux / stddef.h
blob1747b6787b9e90375827a9af75148bf420caf386
1 #ifndef _LINUX_STDDEF_H
2 #define _LINUX_STDDEF_H
4 #include <linux/compiler.h>
6 #ifdef __KERNEL__
8 #undef NULL
9 #define NULL ((void *)0)
11 enum {
12 false = 0,
13 true = 1
16 #undef offsetof
17 #ifdef __compiler_offsetof
18 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
19 #else
20 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
21 #endif
22 #endif /* __KERNEL__ */
24 #endif