Skip to content

Commit

Permalink
sys/types: supporting 32-bit IDs for gid_t/uid_t
Browse files Browse the repository at this point in the history
Signed-off-by: chao an <[email protected]>
  • Loading branch information
anchao committed Oct 7, 2023
1 parent c775ee1 commit cbb61ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/sys/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ typedef _size_t rsize_t;
* gid_t is used for group IDs.
*/

typedef int16_t uid_t;
typedef int16_t gid_t;
typedef unsigned int uid_t;
typedef unsigned int gid_t;

/* dev_t is used for device IDs */

Expand Down

0 comments on commit cbb61ef

Please sign in to comment.