/include/linux/stddef.h

https://github.com/airy09/android_kernel_sony_apq8064 · C Header · 24 lines · 18 code · 6 blank · 0 comment · 0 complexity · 157c74166b958a2a9d941c1cd081e224 MD5 · raw file

  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. #endif