Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_STDDEF_H |
| 3 | #define _LINUX_STDDEF_H |
| 4 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 5 | #include <uapi/linux/stddef.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
Lubos Lunak | 2084c24 | 2012-03-21 14:08:24 +0100 | [diff] [blame] | 7 | #undef NULL |
| 8 | #define NULL ((void *)0) |
| 9 | |
Richard Knutsson | 6e21828 | 2006-09-30 23:27:11 -0700 | [diff] [blame] | 10 | enum { |
| 11 | false = 0, |
| 12 | true = 1 |
| 13 | }; |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #undef offsetof |
| 16 | #ifdef __compiler_offsetof |
Joe Perches | 8c7fbe5 | 2015-06-25 15:01:16 -0700 | [diff] [blame] | 17 | #define offsetof(TYPE, MEMBER) __compiler_offsetof(TYPE, MEMBER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #else |
Joe Perches | 8c7fbe5 | 2015-06-25 15:01:16 -0700 | [diff] [blame] | 19 | #define offsetof(TYPE, MEMBER) ((size_t)&((TYPE *)0)->MEMBER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #endif |
Denys Vlasenko | 3876488 | 2015-03-09 15:52:17 +0100 | [diff] [blame] | 21 | |
| 22 | /** |
Kees Cook | 4229a47 | 2018-01-10 12:53:20 -0800 | [diff] [blame] | 23 | * sizeof_field(TYPE, MEMBER) |
| 24 | * |
| 25 | * @TYPE: The structure containing the field of interest |
| 26 | * @MEMBER: The field to return the size of |
| 27 | */ |
| 28 | #define sizeof_field(TYPE, MEMBER) sizeof((((TYPE *)0)->MEMBER)) |
| 29 | |
| 30 | /** |
Denys Vlasenko | 3876488 | 2015-03-09 15:52:17 +0100 | [diff] [blame] | 31 | * offsetofend(TYPE, MEMBER) |
| 32 | * |
| 33 | * @TYPE: The type of the structure |
| 34 | * @MEMBER: The member within the structure to get the end offset of |
| 35 | */ |
| 36 | #define offsetofend(TYPE, MEMBER) \ |
Kees Cook | 4229a47 | 2018-01-10 12:53:20 -0800 | [diff] [blame] | 37 | (offsetof(TYPE, MEMBER) + sizeof_field(TYPE, MEMBER)) |
Joe Perches | 8c7fbe5 | 2015-06-25 15:01:16 -0700 | [diff] [blame] | 38 | |
| 39 | #endif |