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