summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/gpxe/src/include/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/src/include/stddef.h')
-rw-r--r--contrib/syslinux-4.02/gpxe/src/include/stddef.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/src/include/stddef.h b/contrib/syslinux-4.02/gpxe/src/include/stddef.h
new file mode 100644
index 0000000..2a02a89
--- /dev/null
+++ b/contrib/syslinux-4.02/gpxe/src/include/stddef.h
@@ -0,0 +1,26 @@
+#ifndef STDDEF_H
+#define STDDEF_H
+
+FILE_LICENCE ( GPL2_ONLY );
+
+/* for size_t */
+#include <stdint.h>
+
+#undef NULL
+#define NULL ((void *)0)
+
+#undef offsetof
+#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
+
+#undef container_of
+#define container_of(ptr, type, member) ({ \
+ const typeof( ((type *)0)->member ) *__mptr = (ptr); \
+ (type *)( (char *)__mptr - offsetof(type,member) );})
+
+/* __WCHAR_TYPE__ is defined by gcc and will change if -fshort-wchar is used */
+#ifndef __WCHAR_TYPE__
+#define __WCHAR_TYPE__ long int
+#endif
+typedef __WCHAR_TYPE__ wchar_t;
+
+#endif /* STDDEF_H */