From e0865ca9d893383b24da00c9ab37fabcd3496de3 Mon Sep 17 00:00:00 2001 From: Mike Barcroft Date: Fri, 8 Mar 2002 03:09:46 +0000 Subject: [PATCH] Use a integral type that doesn't require . This accomplishes the goal of actually making independent of other headers for the definition of its types. Pointy hat to: mike --- include/grp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/grp.h b/include/grp.h index 07a4e454f2ec..8ac0371d9190 100644 --- a/include/grp.h +++ b/include/grp.h @@ -43,6 +43,7 @@ #define _GRP_H_ #include +#include #ifndef _POSIX_SOURCE #define _PATH_GROUP "/etc/group" @@ -50,7 +51,7 @@ #ifndef _GID_T_DECLARED #define _GID_T_DECLARED -typedef u_int32_t gid_t; +typedef __uint32_t gid_t; #endif struct group {