binutils-gdb/include/mpw/grp.h

11 lines
125 B
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
#pragma once
#include "sys/types.h"
struct group {
char *gr_name;
gid_t gr_gid;
char *gr_passwd;
char **gr_mem;
};