From 8ac1ae15740e0eabde91a12223deed1c48b88b55 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 be9970ba02..dd1240afad 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