/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
- #ifndef _LINUX_STDDEF_H
- #define _LINUX_STDDEF_H
- #include <linux/compiler.h>
- #ifdef __KERNEL__
- #undef NULL
- #define NULL ((void *)0)
- enum {
- false = 0,
- true = 1
- };
- #undef offsetof
- #ifdef __compiler_offsetof
- #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
- #else
- #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
- #endif
- #endif /* __KERNEL__ */
- #endif