From c72c50ab95611f0565d669ca36160de03c3e6494 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 8 Mar 2002 03:09:46 +0000 Subject: 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(-) (limited to 'include/grp.h') diff --git a/include/grp.h b/include/grp.h index 07a4e45..8ac0371 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 { -- cgit v1.1