ack/lang/cem/libcc/headers/grp.h
dtrg 5c5f711cbb Done a major overhaul of the way target include files are installed and
how platform libraries are built. The ARCH pm variable has now been
renamed PLATFORM (which is more accurate) and a different ARCH
variable added, which represents the CPU family rather than the
hardware platform.
2007-02-20 00:46:10 +00:00

22 lines
541 B
C

/* $Id$ */
/*
* (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 */
int 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 */