summaryrefslogtreecommitdiff
path: root/include/lib/libc/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/libc/stddef.h')
-rw-r--r--include/lib/libc/stddef.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/lib/libc/stddef.h b/include/lib/libc/stddef.h
new file mode 100644
index 00000000..11506503
--- /dev/null
+++ b/include/lib/libc/stddef.h
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2012-2017 Roberto E. Vargas Caballero
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef _STDDEF_H
+#define _STDDEF_H
+
+#include <arch/stddef.h>
+
+#ifndef NULL
+#define NULL ((void *) 0)
+#endif
+
+#define offsetof(st, m) ((size_t)&(((st *)0)->m))
+
+#endif