summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorCarson Fleming <[email protected]>2026-01-25 16:00:20 -0500
committerCarson Fleming <[email protected]>2026-01-25 16:00:20 -0500
commitb364a39849fc4a6f6837f8558b7520efc24ae96c (patch)
tree2f1d3be07c225bd2c29b219df8ec184c256a9e4f /types.h
parentaecec4204b5830fcb97ab93a56a6a29018519ca2 (diff)
downloadsafec-b364a39849fc4a6f6837f8558b7520efc24ae96c.tar.gz
bring in some library functions and restructure
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