LibC: gid_t and id_t are now signed types

I have no idea why I had made them unisigned
This commit is contained in:
Bananymous 2023-06-11 22:14:43 +03:00
parent 51eb44bf40
commit 99f8133b91
1 changed files with 2 additions and 2 deletions

View File

@ -92,13 +92,13 @@ __BEGIN_DECLS
#if !defined(__gid_t_defined) && (defined(__need_all_types) || defined(__need_gid_t))
#define __gid_t_defined 1
typedef unsigned int gid_t;
typedef int gid_t;
#endif
#undef __need_gid_t
#if !defined(__id_t_defined) && (defined(__need_all_types) || defined(__need_id_t))
#define __id_t_defined 1
typedef unsigned int id_t;
typedef int id_t;
#endif
#undef __need_id_t