From 9ee5d132e70d591958cbfbfb42ba8d34e561853d Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sat, 15 Nov 2025 15:48:07 -0500 Subject: sys: types: Add big long long types Signed-off-by: Ian Moffett --- sys/inc/sys/types.h | 7 +++++++ 1 file changed, 7 insertions(+) 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_ */ -- cgit v1.2.3