mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
13 lines
205 B
C
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 */
|