summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-11-15 15:48:07 -0500
committerIan Moffett <ian@osmora.org>2025-11-15 15:48:07 -0500
commit9ee5d132e70d591958cbfbfb42ba8d34e561853d (patch)
tree8dc47346bb7d79bf78162864d772877da448affe /sys
parent1c4cabccac1d994b266cef2d6cb45d96c5761592 (diff)
sys: types: Add big long long types
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r--sys/inc/sys/types.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/inc/sys/types.h b/sys/inc/sys/types.h
index c509351..79873b6 100644
--- a/sys/inc/sys/types.h
+++ b/sys/inc/sys/types.h
@@ -39,10 +39,17 @@
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
+typedef unsigned long long uint64_t;
/* Signed types */
typedef char int8_t;
typedef short int16_t;
typedef int int32_t;
+typedef long long int64_t;
+
+/* Size types */
+typedef uint64_t size_t;
+typedef int64_t ssize_t;
+typedef size_t off_t;
#endif /* !_SYS_TYPES_H_ */