diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-11 20:11:30 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-11 20:11:30 -0400 |
commit | 2549674ff1f949928818129fa7572e2e31bbc0d8 (patch) | |
tree | 1f9ef8769f09acb0fd6deedd097c23b959fe518f /sys | |
parent | 19916128eeb882338f39c756945ad978eab13a49 (diff) |
kernel: types: Add off_t
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 2078e78..943b54c 100644 --- a/sys/include/sys/types.h +++ b/sys/include/sys/types.h @@ -56,6 +56,7 @@ typedef int32_t ssize_t; /* Byte count or error */ #endif typedef size_t uintptr_t; +typedef size_t off_t; typedef _Bool bool; typedef int pid_t; |