diff options
| -rw-r--r-- | include/grp.h | 5 | ||||
| -rw-r--r-- | lib/libc/gen/getgrent.3 | 1 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/include/grp.h b/include/grp.h index 5b101cff8a2b..abd88ef18153 100644 --- a/include/grp.h +++ b/include/grp.h @@ -42,6 +42,9 @@  #ifndef _GRP_H_  #define	_GRP_H_ +#include <sys/types.h> +#include <sys/cdefs.h> +  #ifndef _POSIX_SOURCE  #define	_PATH_GROUP		"/etc/group"  #endif @@ -53,8 +56,6 @@ struct group {  	char	**gr_mem;		/* group members */  }; -#include <sys/cdefs.h> -  __BEGIN_DECLS  struct group *getgrgid __P((gid_t));  struct group *getgrnam __P((const char *)); diff --git a/lib/libc/gen/getgrent.3 b/lib/libc/gen/getgrent.3 index f32a901556f0..b42f68e379e8 100644 --- a/lib/libc/gen/getgrent.3 +++ b/lib/libc/gen/getgrent.3 @@ -47,7 +47,6 @@  .Sh LIBRARY  .Lb libc  .Sh SYNOPSIS -.In sys/types.h  .In grp.h  .Ft struct group *  .Fn getgrent void | 
