From aa3c88fb7d18edd226a2bdeed2f205b50c307c91 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 18 Nov 2025 15:30:18 -0500 Subject: sys: types: Add ID types Signed-off-by: Ian Moffett --- sys/inc/sys/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/inc/sys/types.h b/sys/inc/sys/types.h index 0d476fc..a02bb29 100644 --- a/sys/inc/sys/types.h +++ b/sys/inc/sys/types.h @@ -52,4 +52,8 @@ typedef int64_t ssize_t; typedef size_t off_t; typedef size_t uintptr_t; +/* ID types */ +typedef int32_t id_t; +typedef id_t pid_t; + #endif /* !_SYS_TYPES_H_ */ -- cgit v1.2.3