aboutsummaryrefslogtreecommitdiff
path: root/stddef.h
diff options
context:
space:
mode:
authorbellard <bellard>2001-11-11 02:54:21 +0000
committerbellard <bellard>2001-11-11 02:54:21 +0000
commitb536ac306846dcb1639bb15bda1131063103458c (patch)
tree6c3ffd2e5f88acf78c9f8a01b61168101c4abed7 /stddef.h
parent507a221f7e6967cff747858b05e5644a7a7795bb (diff)
downloadtinycc-b536ac306846dcb1639bb15bda1131063103458c.tar.gz
tinycc-b536ac306846dcb1639bb15bda1131063103458c.tar.bz2
added std libs
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