summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/types.h b/types.h
new file mode 100644
index 0000000..d1d3ca8
--- /dev/null
+++ b/types.h
@@ -0,0 +1,11 @@
+#ifndef __SAFEC_TYPES_H
+#define __SAFEC_TYPES_H
+
+#include <stddef.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+typedef uintptr_t size_t;
+typedef intptr_t ssize_t;
+
+#endif