NetBSD/gnu/dist/include/mpw/grp.h

11 lines
125 B
C
Raw Normal View History

1997-09-24 19:39:15 +04:00
#pragma once
#include "sys/types.h"
struct group {
char *gr_name;
gid_t gr_gid;
char *gr_passwd;
char **gr_mem;
};