LibC: add more typedefs to sys/types

This commit is contained in:
Bananymous 2023-03-23 19:24:12 +02:00
parent 4fd21bc303
commit 8ac1ae1574
1 changed files with 5 additions and 1 deletions

View File

@ -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