From 648c3b4e18b2ce2b6af7d44783e42ca267ea49f5 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 19 Jul 2013 01:34:28 -0400 Subject: change uid_t, gid_t, and id_t to unsigned types this change is both to fix one of the remaining type (and thus C++ ABI) mismatches with glibc/LSB and to allow use of the full range of uid and gid values, if so desired. passwd/group access functions were not prepared to deal with unsigned values, so they too have been fixed with this commit. --- arch/mips/bits/alltypes.h.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/mips') diff --git a/arch/mips/bits/alltypes.h.sh b/arch/mips/bits/alltypes.h.sh index a5acd494..032b45a4 100755 --- a/arch/mips/bits/alltypes.h.sh +++ b/arch/mips/bits/alltypes.h.sh @@ -70,9 +70,9 @@ STRUCT timeval { time_t tv_sec; int tv_usec; }; STRUCT timespec { time_t tv_sec; long tv_nsec; }; TYPEDEF int pid_t; -TYPEDEF int id_t; -TYPEDEF int uid_t; -TYPEDEF int gid_t; +TYPEDEF unsigned id_t; +TYPEDEF unsigned uid_t; +TYPEDEF unsigned gid_t; TYPEDEF int key_t; TYPEDEF struct __pthread * pthread_t; -- cgit v1.2.1