diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-08 17:44:46 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-08 17:44:46 -0400 |
commit | fc8c9bc5029d006d531341c5306b49fc081bcfd7 (patch) | |
tree | 8cb76a0d12396117c8c62b2d07efa6f3116d132e /sys | |
parent | ac46a8f0dfb4d303d75a43cff4994b724fd4cf4d (diff) |
kernel: Add uid_t in sys/types.h
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/sys/types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/types.h b/sys/include/sys/types.h index 5cb2fc7..f9ccd34 100644 --- a/sys/include/sys/types.h +++ b/sys/include/sys/types.h @@ -100,6 +100,7 @@ typedef __size_t uintptr_t; typedef __size_t off_t; typedef int pid_t; typedef int dev_t; +typedef uint32_t uid_t; typedef uint32_t mode_t; typedef uint32_t ino_t; typedef uint32_t nlink_t; |