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