summaryrefslogblamecommitdiffstats
path: root/include/linux/stddef.h
blob: f4aec0e75c3a268cebeecd2dcdc43fc68126a27a (plain) (tree)
1
2
3
4
5
6
7
8


                       
                              
 
 
           
                        





                    





                                                              
      
#ifndef _LINUX_STDDEF_H
#define _LINUX_STDDEF_H

#include <uapi/linux/stddef.h>


#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