diff options
Diffstat (limited to 'backport/backport-include/linux/stddef.h')
-rw-r--r-- | backport/backport-include/linux/stddef.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/backport/backport-include/linux/stddef.h b/backport/backport-include/linux/stddef.h deleted file mode 100644 index 2c836b00..00000000 --- a/backport/backport-include/linux/stddef.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef __BACKPORT_LINUX_STDDEF_H -#define __BACKPORT_LINUX_STDDEF_H -#include_next <linux/stddef.h> - -#ifndef offsetofend -/** - * offsetofend(TYPE, MEMBER) - * - * @TYPE: The type of the structure - * @MEMBER: The member within the structure to get the end offset of - */ -#define offsetofend(TYPE, MEMBER) \ - (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER)) -#endif - -#endif /* __BACKPORT_LINUX_STDDEF_H */ |