diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-08 18:19:14 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-08 18:19:14 -0400 |
commit | 71f56e9075d34fa560b23a448d58731c270aa050 (patch) | |
tree | 44db45f9542c3fa340f8ec444787347956d45a8d | |
parent | bb537181b48bba16aee0b601d579547d0a5c8122 (diff) |
kernel: types: Add pid_t
Signed-off-by: Ian Moffett <ian@osmora.org>
-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 fad34c7..c77663c 100644 --- a/sys/include/sys/types.h +++ b/sys/include/sys/types.h @@ -57,5 +57,6 @@ typedef int32_t ssize_t; /* Byte count or error */ typedef size_t uintptr_t; typedef _Bool bool; +typedef int pid_t; #endif /* _SYS_TYPES_H_ */ |