4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 19:09:58 +08:00
1999-05-03 07:29:06 +00:00

11 lines
125 B
C

#pragma once
#include "sys/types.h"
struct group {
char *gr_name;
gid_t gr_gid;
char *gr_passwd;
char **gr_mem;
};