projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b58acd
)
Initial revision
author
wdenk
<wdenk>
Sun, 31 Mar 2002 12:34:56 +0000
(12:34 +0000)
committer
wdenk
<wdenk>
Sun, 31 Mar 2002 12:34:56 +0000
(12:34 +0000)
include/linux/stddef.h
[new file with mode: 0644]
patch
|
blob
diff --git a/include/linux/stddef.h
b/include/linux/stddef.h
new file mode 100644
(file)
index 0000000..
81e34c2
--- /dev/null
+++ b/
include/linux/stddef.h
@@ -0,0
+1,18
@@
+#ifndef _LINUX_STDDEF_H
+#define _LINUX_STDDEF_H
+
+#undef NULL
+#if defined(__cplusplus)
+#define NULL 0
+#else
+#define NULL ((void *)0)
+#endif
+
+#ifndef _SIZE_T
+#include <linux/types.h>
+#endif
+
+#undef offsetof
+#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
+
+#endif