aboutsummaryrefslogtreecommitdiffstats
path: root/uart-monitor/include/linux/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'uart-monitor/include/linux/stddef.h')
m---------uart-monitor0
-rw-r--r--uart-monitor/include/linux/stddef.h18
2 files changed, 18 insertions, 0 deletions
diff --git a/uart-monitor b/uart-monitor
deleted file mode 160000
-Subproject eb8b047c29a2027fbdd841cd1289fa27ddb22d7
diff --git a/uart-monitor/include/linux/stddef.h b/uart-monitor/include/linux/stddef.h
new file mode 100644
index 0000000..81e34c2
--- /dev/null
+++ b/uart-monitor/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