stddef.h 620 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef _LINUX_STDDEF_H
  2. #define _LINUX_STDDEF_H
  3. #include <linux/compiler.h>
  4. #ifdef __KERNEL__
  5. #undef NULL
  6. #define NULL ((void *)0)
  7. enum {
  8. false = 0,
  9. true = 1
  10. };
  11. #undef offsetof
  12. #ifdef __compiler_offsetof
  13. #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
  14. #else
  15. #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
  16. #endif
  17. #endif /* __KERNEL__ */
  18. /**
  19. * offsetofend(TYPE, MEMBER)
  20. *
  21. * @TYPE: The type of the structure
  22. * @MEMBER: The member within the structure to get the end offset of
  23. */
  24. #define offsetofend(TYPE, MEMBER) \
  25. (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
  26. #endif