aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/nsss/grp-def.h
blob: 0a6db5035f9421b0076e3fd21fb67138b74e1c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ISC license. */

#ifndef NSSS_GRP_DEF_H
#define NSSS_GRP_DEF_H

#include <sys/types.h>

struct group
{
  char *gr_name ;
  char *gr_passwd ;
  gid_t gr_gid ;
  char **gr_mem ;
} ;

#endif