mirror of git://sourceware.org/git/glibc.git
entered into RCS
This commit is contained in:
parent
527e92d8ff
commit
914b0e7a2e
12
grp/grp.h
12
grp/grp.h
|
|
@ -32,12 +32,12 @@ __BEGIN_DECLS
|
|||
|
||||
/* The group structure. */
|
||||
struct group
|
||||
{
|
||||
char *gr_name; /* Group name. */
|
||||
char *gr_passwd; /* Password. */
|
||||
__gid_t gr_gid; /* Group ID. */
|
||||
char **gr_mem; /* Member list. */
|
||||
};
|
||||
{
|
||||
char *gr_name; /* Group name. */
|
||||
char *gr_passwd; /* Password. */
|
||||
__gid_t gr_gid; /* Group ID. */
|
||||
char **gr_mem; /* Member list. */
|
||||
};
|
||||
|
||||
|
||||
#if defined(__USE_SVID) || defined(__USE_GNU)
|
||||
|
|
|
|||
|
|
@ -18,4 +18,15 @@ Cambridge, MA 02139, USA. */
|
|||
|
||||
/* Compatibility with BSD string(3). */
|
||||
|
||||
#ifndef _STRINGS_H
|
||||
|
||||
#define _STRINGS_H 1
|
||||
#include <features.h>
|
||||
|
||||
|
||||
#ifndef _STRING_H
|
||||
#include <string.h>
|
||||
#endif /* string.h */
|
||||
|
||||
|
||||
#endif /* strings.h */
|
||||
|
|
|
|||
Loading…
Reference in New Issue