summaryrefslogtreecommitdiff
path: root/include/sys/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sys/types.h')
-rw-r--r--include/sys/types.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/sys/types.h b/include/sys/types.h
new file mode 100644
index 0000000..ace1a62
--- /dev/null
+++ b/include/sys/types.h
@@ -0,0 +1,20 @@
+#ifndef _SYS_TYPES_H
+#define _SYS_TYPES_H
+
+#include <stdint.h>
+
+#ifndef NULL
+#define NULL ((void*) 0)
+#endif
+
+#ifndef _SIZE_T
+#define _SIZE_T
+typedef uint32_t size_t;
+#endif
+
+#ifndef _TIME_T
+#define _TIME_T
+typedef int32_t time_t;
+#endif
+
+#endif