Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_STDDEF_H |
| 2 | #define _LINUX_STDDEF_H |
| 3 | |
| 4 | #include <linux/compiler.h> |
| 5 | |
David Woodhouse | 1694176 | 2006-09-22 08:00:42 +0100 | [diff] [blame] | 6 | #ifdef __KERNEL__ |
Richard Knutsson | 6e21828 | 2006-09-30 23:27:11 -0700 | [diff] [blame] | 7 | |
Lubos Lunak | 2084c24 | 2012-03-21 14:08:24 +0100 | [diff] [blame^] | 8 | #undef NULL |
| 9 | #define NULL ((void *)0) |
| 10 | |
Richard Knutsson | 6e21828 | 2006-09-30 23:27:11 -0700 | [diff] [blame] | 11 | enum { |
| 12 | false = 0, |
| 13 | true = 1 |
| 14 | }; |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
David Woodhouse | 1694176 | 2006-09-22 08:00:42 +0100 | [diff] [blame] | 22 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | #endif |