Welcome to mirror list, hosted at ThFree Co, Russian Federation.

grp.h « mpw « include - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: faf2c6a6be9b8b2d0ad496ed82ce4d0cca9910c4 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "sys/types.h"

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