diff options
Diffstat (limited to 'src/grp/struct_group.c')
| -rw-r--r-- | src/grp/struct_group.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/grp/struct_group.c b/src/grp/struct_group.c new file mode 100644 index 00000000..16097b22 --- /dev/null +++ b/src/grp/struct_group.c @@ -0,0 +1,11 @@ +#include <grp.h> + +struct group { + char * gr_name; + gid_t gr_gid; + char ** gr_mem; +}; + +/* +POSIX(1) +*/ |
