summaryrefslogtreecommitdiff
path: root/sys/inc
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-11-18 15:30:18 -0500
committerIan Moffett <ian@osmora.org>2025-11-18 15:30:18 -0500
commitaa3c88fb7d18edd226a2bdeed2f205b50c307c91 (patch)
tree3ed8fa49b23d0877ac189dff524b80fd714c0e6a /sys/inc
parent4294ef186f9f0b2079da9ab1f44853beba329cb3 (diff)
sys: types: Add ID types
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/inc')
-rw-r--r--sys/inc/sys/types.h4
1 files changed, 4 insertions, 0 deletions
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_ */