From 1be8b2f51443d3d7ee67ac1d23cd415287d895fc Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 23 Mar 2023 19:24:12 +0200 Subject: [PATCH] LibC: add more typedefs to sys/types --- libc/include/sys/types.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libc/include/sys/types.h b/libc/include/sys/types.h index be9970ba..dd1240af 100644 --- a/libc/include/sys/types.h +++ b/libc/include/sys/types.h @@ -5,6 +5,10 @@ __BEGIN_DECLS -typedef int32_t pid_t; +typedef int32_t id_t; +typedef id_t pid_t; +typedef id_t uid_t; +typedef id_t gid_t; +typedef uint16_t mode_t; __END_DECLS \ No newline at end of file