summaryrefslogtreecommitdiff
path: root/include/stddef.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/stddef.h')
-rw-r--r--include/stddef.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/stddef.h b/include/stddef.h
new file mode 100644
index 0000000..998f53d
--- /dev/null
+++ b/include/stddef.h
@@ -0,0 +1,7 @@
+#ifndef _STDDEF_H
+#define _STDDEF_H
+
+#define NULL ((void*)0)
+typedef unsigned long size_t;
+
+#endif /* _STDDEF_H_ */