This commit is contained in:
ceriel
1991-10-04 14:34:29 +00:00
parent f9b38448fd
commit 9ede34412c
4 changed files with 150 additions and 17 deletions

21
include/_tail_cc/grp.h Normal file
View File

@@ -0,0 +1,21 @@
/* $Header$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#ifndef _GRP_H
#define _GRP_H
struct group {
char *gr_name; /* the name of the group */
char *gr_passwd; /* the group passwd */
gid_t gr_gid; /* the numerical group ID */
char **gr_mem; /* a vector of pointers to the members */
};
extern struct group *getgrgid();
extern struct group *getgrnam();
extern struct group *getgrent();
#endif /* _GRP_H */