blob: 2181719fd907b6cc516f0c02217d0a32d2b7874c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_STDDEF_H
3#define _LINUX_STDDEF_H
4
David Howells607ca462012-10-13 10:46:48 +01005#include <uapi/linux/stddef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Lubos Lunak2084c242012-03-21 14:08:24 +01007#undef NULL
8#define NULL ((void *)0)
9
Richard Knutsson6e218282006-09-30 23:27:11 -070010enum {
11 false = 0,
12 true = 1
13};
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#undef offsetof
16#ifdef __compiler_offsetof
Joe Perches8c7fbe52015-06-25 15:01:16 -070017#define offsetof(TYPE, MEMBER) __compiler_offsetof(TYPE, MEMBER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#else
Joe Perches8c7fbe52015-06-25 15:01:16 -070019#define offsetof(TYPE, MEMBER) ((size_t)&((TYPE *)0)->MEMBER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#endif
Denys Vlasenko38764882015-03-09 15:52:17 +010021
22/**
23 * offsetofend(TYPE, MEMBER)
24 *
25 * @TYPE: The type of the structure
26 * @MEMBER: The member within the structure to get the end offset of
27 */
28#define offsetofend(TYPE, MEMBER) \
29 (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
Joe Perches8c7fbe52015-06-25 15:01:16 -070030
31#endif