diff options
author | Ian Moffett <ian@osmora.org> | 2024-10-29 18:32:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-10-29 18:32:12 -0400 |
commit | 44f44051847fd2685446dff6965032ae076c13b9 (patch) | |
tree | d28f9ab6a2308ddf378e2a68e6fb624a74d5a666 /sys | |
parent | 5084a0676cd9b33927b2dac3a8fa9a42bfb6e2cc (diff) |
kernel: types: Add more POSIX types
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/sys/types.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/include/sys/types.h b/sys/include/sys/types.h index fc25fa4..32d4b62 100644 --- a/sys/include/sys/types.h +++ b/sys/include/sys/types.h @@ -61,6 +61,13 @@ typedef _Bool bool; typedef int pid_t; typedef int dev_t; typedef uint32_t mode_t; +typedef uint32_t ino_t; +typedef uint32_t nlink_t; +typedef uint32_t uid_t; +typedef uint32_t gid_t; +typedef uint32_t blksize_t; +typedef uint32_t blkcnt_t; +typedef uint64_t time_t; #if defined(_KERNEL) typedef uintptr_t paddr_t; |