reactos/drivers/filesystems/ext2/inc/linux/stddef.h
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

13 lines
205 B
C

#ifndef _LINUX_STDDEF_H
#define _LINUX_STDDEF_H
enum {
false = 0,
true = 1
};
#ifndef offsetof
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#endif
#endif /* _LINUX_STDDEF_H */